diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-09-16 21:42:11 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-09-16 21:42:11 +0100 |
commit | fe79de663c230f7d4b525a5052da39b1d10c3b9d (patch) | |
tree | cd691f76e9419a3cdda90de5b683b25b2cfb7d5b | |
parent | e9caacd00fc7f7682664d29567a5b7dcfbde7479 (diff) |
One more semicolon check (BYE command).
-rw-r--r-- | protocols/msn/sb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/msn/sb.c b/protocols/msn/sb.c index 9c015a9c..1cd1c743 100644 --- a/protocols/msn/sb.c +++ b/protocols/msn/sb.c @@ -635,7 +635,7 @@ static int msn_sb_command( struct msn_handler_data *handler, char **cmd, int num as a spare for a next conversation sounds more sane to me. The server will clean it up when it's idle for too long. */ } - else if( sb->chat ) + else if( sb->chat && !strchr( cmd[1], ';' ) ) { imcb_chat_remove_buddy( sb->chat, cmd[1], "" ); } |