summaryrefslogtreecommitdiff
path: root/include/modules.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2016-09-02 19:43:53 +0100
committerAttila Molnar <attilamolnar@hush.com>2016-09-02 22:13:22 +0200
commitb8d85c62517da91cf49428a419eca10cf82682f2 (patch)
treea3333756ed759aa1bed0b1362607f422cfe47f73 /include/modules.h
parent458ea2029cf36e9e8d3c7b7d0176e365234c018a (diff)
Update stuff for the new versioning system.
Diffstat (limited to 'include/modules.h')
-rw-r--r--include/modules.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h
index 02460a38e..5deed943a 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -1277,7 +1277,7 @@ struct AllModuleList {
} \
return TRUE; \
} \
- extern "C" DllExport const char inspircd_src_version[] = INSPIRCD_VERSION " " INSPIRCD_REVISION;
+ extern "C" DllExport const char inspircd_src_version[] = INSPIRCD_VERSION;
#else
@@ -1286,7 +1286,7 @@ struct AllModuleList {
{ \
return new y; \
} \
- extern "C" DllExport const char inspircd_src_version[] = INSPIRCD_VERSION " " INSPIRCD_REVISION;
+ extern "C" DllExport const char inspircd_src_version[] = INSPIRCD_VERSION;
#endif
#define COMMAND_INIT(c) MODULE_INIT(CommandModule<c>)