diff options
| author | Alexander Barton <alex@barton.de> | 2023-01-02 23:51:15 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2023-01-02 23:51:15 +0100 |
| commit | 50114cd017a0a4799d8eb88cb2f53eafb7993c92 (patch) | |
| tree | 895e1c6f2709915f8d5894d3f248d32258c1eaf2 /src | |
| parent | c7de505c919c5f550d848f9cafae99532bc1f789 (diff) | |
| download | ngircd-50114cd017a0a4799d8eb88cb2f53eafb7993c92.tar.gz ngircd-50114cd017a0a4799d8eb88cb2f53eafb7993c92.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/ngircd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ngircd/ngircd.c b/src/ngircd/ngircd.c index 76ea8d38..772d9db6 100644 --- a/src/ngircd/ngircd.c +++ b/src/ngircd/ngircd.c @@ -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, "+", |