diff options
Diffstat (limited to 'vchat-commands.c')
-rwxr-xr-x | vchat-commands.c | 4 |
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 */ |
32 | char *vchat_cm_version = "$Id$"; | 32 | const char *vchat_cm_version = "vchat-commands.c $Id$"; |
33 | 33 | ||
34 | /* from vchat-client.c */ | 34 | /* from vchat-client.c */ |
35 | extern int ownquit; | 35 | extern 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 | ||