summaryrefslogtreecommitdiff
path: root/vchat-commands.c
diff options
context:
space:
mode:
authorerdgeist <de@gsmk.de>2014-04-16 20:12:34 +0200
committererdgeist <de@gsmk.de>2014-04-16 20:12:34 +0200
commitb32861fa6ec00c655b7a43ab0d511c7048f1ee43 (patch)
tree50cd33c87b43ff5c9a7a029346386cef2bdff5c6 /vchat-commands.c
parent71fb4ac25542721f3a2d42ac4eef0d7296968f82 (diff)
parent3297473435ad53b6691d6c772f83457a72134c48 (diff)
Merge from github
Diffstat (limited to 'vchat-commands.c')
-rwxr-xr-xvchat-commands.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/vchat-commands.c b/vchat-commands.c
index 2c3d68b..06c9010 100755
--- a/vchat-commands.c
+++ b/vchat-commands.c
@@ -29,7 +29,7 @@
29#include "vchat-user.h" 29#include "vchat-user.h"
30 30
31/* version of this module */ 31/* version of this module */
32char *vchat_cm_version = "$Id$"; 32const char *vchat_cm_version = "vchat-commands.c $Id$";
33 33
34/* from vchat-client.c */ 34/* from vchat-client.c */
35extern int ownquit; 35extern int ownquit;
@@ -452,6 +452,8 @@ command_version(char *tail)
452 writeout (vchat_io_version); 452 writeout (vchat_io_version);
453 writeout (vchat_us_version); 453 writeout (vchat_us_version);
454 writeout (vchat_cm_version); 454 writeout (vchat_cm_version);
455 writeout (vchat_ssl_version);
456 writeout (vchat_ssl_version_external);
455 showout(); 457 showout();
456} 458}
457 459