summaryrefslogtreecommitdiff
path: root/vchat-commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'vchat-commands.c')
-rwxr-xr-xvchat-commands.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/vchat-commands.c b/vchat-commands.c
index 651878c..0c8ca26 100755
--- a/vchat-commands.c
+++ b/vchat-commands.c
@@ -393,12 +393,13 @@ command_quit(char *tail)
393 /* send users message to server */ 393 /* send users message to server */
394 snprintf (tmpstr, TMPSTRSIZE, ".x %s", tail); 394 snprintf (tmpstr, TMPSTRSIZE, ".x %s", tail);
395 networkoutput (tmpstr); 395 networkoutput (tmpstr);
396 396
397 /* show action in channel window */ 397 /* show action in channel window */
398 writechan (tmpstr); 398 writechan (tmpstr);
399 399
400 /* Inform vchat-client, that the closing connection 400 /* Inform vchat-client, that the closing connection
401 following is intended */ 401 following is intended */
402 status = 0;
402 ownquit = 1; 403 ownquit = 1;
403} 404}
404 405