about summary refs log tree commit diff stats
path: root/src/main.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-11-07 21:57:41 +0000
committerJames Booth <boothj5@gmail.com>2013-11-07 21:57:41 +0000
commit1248f49cfaf9806dfcf40e0d0f6fe854d693d6a3 (patch)
tree0788431d3a3f17185580ef37268bf4097ee2f53a /src/main.c
parent4abdb023961e94581f34ae4fede17532e05c0e7c (diff)
parentac7ec7f2d182d75ea15c5b07009709f106f6e691 (diff)
downloadprofani-tty-1248f49cfaf9806dfcf40e0d0f6fe854d693d6a3.tar.gz
Merge remote-tracking branch 'tsenart/connect-on-startup'
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 253c9237..c3065bd3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -32,6 +32,7 @@
 static gboolean disable_tls = FALSE;
 static gboolean version = FALSE;
 static char *log = "INFO";
+static char *account_name = NULL;
 
 int
 main(int argc, char **argv)
@@ -40,6 +41,7 @@ main(int argc, char **argv)
     {
         { "version", 'v', 0, G_OPTION_ARG_NONE, &version, "Show version information", NULL },
         { "disable-tls", 'd', 0, G_OPTION_ARG_NONE, &disable_tls, "Disable TLS", NULL },
+        { "account", 'a', 0, G_OPTION_ARG_STRING, &account_name, "Auto connect to an account on start-up" },
         { "log",'l', 0, G_OPTION_ARG_STRING, &log, "Set logging levels, DEBUG, INFO (default), WARN, ERROR", "LEVEL" },
         { NULL }
     };
@@ -77,7 +79,7 @@ main(int argc, char **argv)
         return 0;
     }
 
-    prof_run(disable_tls, log);
+    prof_run(disable_tls, log, account_name);
 
     return 0;
 }