diff options
author | Andreas Kotes <count@flatline.de> | 2014-04-16 15:28:51 +0200 |
---|---|---|
committer | Andreas Kotes <count@flatline.de> | 2014-04-16 15:28:51 +0200 |
commit | edba804a0cbd19e5c971c55661bcf83967573906 (patch) | |
tree | 0582627886aaabb13fa3baf23b01a3cb2da9ec77 | |
parent | 0171de7653dbc409f8a936e80a8c9bc3ab3d1bdb (diff) |
fix version strings
-rwxr-xr-x | vchat-client.c | 2 | ||||
-rwxr-xr-x | vchat-commands.c | 2 | ||||
-rwxr-xr-x | vchat-protocol.c | 2 | ||||
-rwxr-xr-x | vchat-ssl.c | 2 | ||||
-rwxr-xr-x | vchat-ui.c | 2 | ||||
-rwxr-xr-x | vchat-user.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/vchat-client.c b/vchat-client.c index 1efcd7d..a2e298c 100755 --- a/vchat-client.c +++ b/vchat-client.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include "vchat-user.h" | 32 | #include "vchat-user.h" |
33 | 33 | ||
34 | /* version of this module */ | 34 | /* version of this module */ |
35 | const char *vchat_cl_version = "$Id$"; | 35 | const char *vchat_cl_version = "vchat-client.c $Id$"; |
36 | 36 | ||
37 | /* externally used variables */ | 37 | /* externally used variables */ |
38 | /* we're logged in */ | 38 | /* we're logged in */ |
diff --git a/vchat-commands.c b/vchat-commands.c index 5ade188..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 | const 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; |
diff --git a/vchat-protocol.c b/vchat-protocol.c index 6cf9724..b077411 100755 --- a/vchat-protocol.c +++ b/vchat-protocol.c | |||
@@ -35,7 +35,7 @@ | |||
35 | #include "vchat-ssl.h" | 35 | #include "vchat-ssl.h" |
36 | 36 | ||
37 | /* version of this module */ | 37 | /* version of this module */ |
38 | const char *vchat_io_version = "$Id$"; | 38 | const char *vchat_io_version = "vchat-protocol.c $Id$"; |
39 | 39 | ||
40 | /* externally used variables */ | 40 | /* externally used variables */ |
41 | int serverfd = -1; | 41 | int serverfd = -1; |
diff --git a/vchat-ssl.c b/vchat-ssl.c index 999d6b8..68e3699 100755 --- a/vchat-ssl.c +++ b/vchat-ssl.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include "vchat.h" | 32 | #include "vchat.h" |
33 | #include "vchat-ssl.h" | 33 | #include "vchat-ssl.h" |
34 | 34 | ||
35 | const char *vchat_ssl_version = "$Id$"; | 35 | const char *vchat_ssl_version = "vchat-ssl.c $Id$"; |
36 | 36 | ||
37 | #define VC_CTX_ERR_EXIT(se, cx) do { \ | 37 | #define VC_CTX_ERR_EXIT(se, cx) do { \ |
38 | snprintf(tmpstr, TMPSTRSIZE, "CREATE CTX: %s", \ | 38 | snprintf(tmpstr, TMPSTRSIZE, "CREATE CTX: %s", \ |
@@ -36,7 +36,7 @@ | |||
36 | #include "vchat-user.h" | 36 | #include "vchat-user.h" |
37 | 37 | ||
38 | /* version of this module */ | 38 | /* version of this module */ |
39 | const char *vchat_ui_version = "$Id$"; | 39 | const char *vchat_ui_version = "vchat-ui.c $Id$"; |
40 | 40 | ||
41 | /* externally used variables */ | 41 | /* externally used variables */ |
42 | /* current string in topic window */ | 42 | /* current string in topic window */ |
diff --git a/vchat-user.c b/vchat-user.c index d7261d6..7280672 100755 --- a/vchat-user.c +++ b/vchat-user.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #include "vchat-user.h" | 15 | #include "vchat-user.h" |
16 | 16 | ||
17 | /* version of this module */ | 17 | /* version of this module */ |
18 | char *vchat_us_version = "$Id$"; | 18 | char *vchat_us_version = "vchat-user.c $Id$"; |
19 | 19 | ||
20 | typedef struct | 20 | typedef struct |
21 | { | 21 | { |