diff mcabber/src/commands.c @ 1368:23afeb5c555b

Don't strip quotes from a status message (Suggested by bb)
author Mikael Berthe <mikael@lilotux.net>
date Wed, 14 Nov 2007 19:25:15 +0100
parents c7e709719c43
children cd9182f0b5c7
line wrap: on
line diff
--- 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);