mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 01:40:27 +00:00
Add "+DEBUG" to the version string only when configured with --enable-debug
The debug log messages are always available and a runtime option (since
commit c7de505c
), but the assert()'s are only active when ngIRCd was
configured with the "--enable-debug" option.
So only add "+DEBUG" to the version string when the latter is the case.
This commit is contained in:
parent
c7de505c91
commit
50114cd017
@ -341,11 +341,13 @@ Fill_Version(void)
|
||||
strlcat(NGIRCd_VersionAddition, "CHARCONV",
|
||||
sizeof NGIRCd_VersionAddition);
|
||||
#endif
|
||||
#ifdef DEBUG
|
||||
if (NGIRCd_VersionAddition[0])
|
||||
strlcat(NGIRCd_VersionAddition, "+",
|
||||
sizeof NGIRCd_VersionAddition);
|
||||
strlcat(NGIRCd_VersionAddition, "DEBUG",
|
||||
sizeof NGIRCd_VersionAddition);
|
||||
#endif
|
||||
#ifdef IDENTAUTH
|
||||
if (NGIRCd_VersionAddition[0])
|
||||
strlcat(NGIRCd_VersionAddition, "+",
|
||||
|
Loading…
Reference in New Issue
Block a user