mcabber/src/commands.c
changeset 1387 3067c096cfc4
parent 1381 40095d413da9
child 1391 e20ab87c4c4c
--- a/mcabber/src/commands.c	Sun Dec 02 17:56:51 2007 +0100
+++ b/mcabber/src/commands.c	Sun Dec 02 18:10:02 2007 +0100
@@ -306,20 +306,14 @@
   // Locate the end of the word
   for (p2 = p1 ; *p2 && (*p2 != ' ') ; p2++)
     ;
-  // Extract the word
+  // Extract the word and look for an alias in the list
   word = g_strndup(p1, p2-p1);
-
-  // Look for an alias in the list
   value = settings_get(SETTINGS_TYPE_ALIAS, (const char*)word);
-  if (value) {
-    // There is an alias to expand
-    newline = g_new(char, strlen(value)+strlen(p2)+2);
-    *newline = COMMAND_CHAR;
-    strcpy(newline+1, value);
-    strcat(newline, p2);
-  }
   g_free(word);
 
+  if (value)
+    newline = g_strdup_printf("%c%s%s", COMMAND_CHAR, value, p2);
+
   return newline;
 }