Don't strip quotes from a status message (Suggested by bb)
authorMikael Berthe <mikael@lilotux.net>
Wed, 14 Nov 2007 19:25:15 +0100
changeset 1368 23afeb5c555b
parent 1367 cd0d63024923
child 1369 acf5bbdddfc0
Don't strip quotes from a status message (Suggested by bb)
mcabber/src/commands.c
--- a/mcabber/src/commands.c	Wed Nov 14 00:34:22 2007 +0100
+++ b/mcabber/src/commands.c	Wed Nov 14 19:25:15 2007 +0100
@@ -800,7 +800,7 @@
     return;
   }
 
-  paramlst = split_arg(arg, 2, 0); // status, message
+  paramlst = split_arg(arg, 2, 1); // status, message
   status = *paramlst;
   msg = *(paramlst+1);