changeset 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 cd0d63024923
children acf5bbdddfc0
files mcabber/src/commands.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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);