about summary refs log tree commit diff stats
path: root/src/command.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-10-03 22:19:46 +0100
committerJames Booth <boothj5@gmail.com>2012-10-03 22:19:46 +0100
commit585d3e52f794ad683418a8efe63c91ec9aa3c80d (patch)
treef8463af60afacfc284e5c6c78d78062be0ecf02b /src/command.c
parent6aa1fe55133b2a06addd598ee19c14dc0bae32d6 (diff)
downloadprofani-tty-585d3e52f794ad683418a8efe63c91ec9aa3c80d.tar.gz
Made usage of cons_show vargs
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c28
1 files changed, 7 insertions, 21 deletions
diff --git a/src/command.c b/src/command.c
index ddc4fa7d..240220c6 100644
--- a/src/command.c
+++ b/src/command.c
@@ -478,9 +478,7 @@ _cmd_connect(const char * const inp, struct cmd_help_t help)
         cons_show("You are either connected already, or a login is in process.");
         result = TRUE;
     } else if (strlen(inp) < 10) {
-        char usage[strlen(help.usage + 8)];
-        sprintf(usage, "Usage: %s", help.usage);
-        cons_show(usage);
+        cons_show("Usage: %s", help.usage);
         result = TRUE;
     } else {
         char *user, *lower;
@@ -622,14 +620,10 @@ _cmd_msg(const char * const inp, struct cmd_help_t help)
 
                 win_show_outgoing_msg("me", usr, msg);
             } else {
-                char usage[strlen(help.usage + 8)];
-                sprintf(usage, "Usage: %s", help.usage);
-                cons_show(usage);
+                cons_show("Usage: %s", help.usage);
             }
         } else {
-            char usage[strlen(help.usage + 8)];
-            sprintf(usage, "Usage: %s", help.usage);
-            cons_show(usage);
+            cons_show("Usage: %s", help.usage);
         }
     }
 
@@ -670,9 +664,7 @@ _cmd_tiny(const char * const inp, struct cmd_help_t help)
             free(url);
         }
     } else {
-        char usage[strlen(help.usage + 8)];
-        sprintf(usage, "Usage: %s", help.usage);
-        cons_show(usage);
+        cons_show("Usage: %s", help.usage);
         
         if (win_in_chat()) {
             char usage[strlen(help.usage + 8)];
@@ -739,9 +731,7 @@ static gboolean
 _cmd_set_remind(const char * const inp, struct cmd_help_t help)
 {
     if ((strncmp(inp, "/remind ", 8) != 0) || (strlen(inp) < 9)) {
-        char usage[strlen(help.usage + 8)];
-        sprintf(usage, "Usage: %s", help.usage);
-        cons_show(usage);
+        cons_show("Usage: %s", help.usage);
     } else {
         // copy input    
         char inp_cpy[strlen(inp) + 1];
@@ -821,14 +811,10 @@ _update_presence(const jabber_presence_t presence,
         jabber_update_presence(presence, msg);
         title_bar_set_status(presence);
         if (msg != NULL) {
-            char str[14 + strlen(show) + 3 + strlen(msg) + 2];
-            sprintf(str, "Status set to %s, \"%s\"", show, msg);
-            cons_show(str);
+            cons_show("Status set to %s, \"%s\"", show, msg);
             free(msg);
         } else {
-            char str[14 + strlen(show) + 1];
-            sprintf(str, "Status set to %s", show);
-            cons_show(str);
+            cons_show("Status set to %s", show);
         }
     }