# HG changeset patch # User Mikael Berthe # Date 1195064715 -3600 # Node ID 23afeb5c555bd3dea91807d5d56654fcf66557b5 # Parent cd0d630249237a561155a5905d4f1ddfbb42449b Don't strip quotes from a status message (Suggested by bb) diff -r cd0d63024923 -r 23afeb5c555b 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);