summaryrefslogtreecommitdiff
path: root/vchat-commands.c
diff options
context:
space:
mode:
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..5ade188 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 = "$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