summaryrefslogtreecommitdiff
path: root/vchat-commands.c
diff options
context:
space:
mode:
authorerdgeist <>2010-07-30 21:41:50 +0000
committererdgeist <>2010-07-30 21:41:50 +0000
commit6dac4efa6181e2696ea112c3f1826f529160ceef (patch)
tree0f081ca75b0f35d727314c78c4b0f33fdf93af25 /vchat-commands.c
parenta4b65f17eb73100a3fd4ec1f4de7cee56aa5131b (diff)
Can do v6 and reconnect.
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