about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2024-01-06 15:50:33 +0100
committerAlexander Barton <alex@barton.de>2024-01-06 16:21:01 +0100
commitbc7148f4aca8adc5db309e2559bbfddc78d3328e (patch)
tree00a64d580006cb553714a35f92bd26b254b2c6e1 /src
parentf96966a62f3770c543f3cf9bb17da9fbaf5f3c79 (diff)
downloadngircd-bc7148f4aca8adc5db309e2559bbfddc78d3328e.tar.gz
ngircd-bc7148f4aca8adc5db309e2559bbfddc78d3328e.zip
Fix showing the "Ident" option in --configtest output
We tested for the wrong #define ... ooops!
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 4fd7d44d..84dfdd01 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -1,6 +1,6 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001-2019 Alexander Barton (alex@barton.de) and Contributors.
+ * Copyright (c)2001-2024 Alexander Barton (alex@barton.de) and Contributors.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -408,7 +408,7 @@ Conf_Test( void )
 #endif
 	printf("  DefaultUserModes = %s\n", Conf_DefaultUserModes);
 	printf("  DNS = %s\n", yesno_to_str(Conf_DNS));
-#ifdef IDENT
+#ifdef IDENTAUTH
 	printf("  Ident = %s\n", yesno_to_str(Conf_Ident));
 #endif
 	printf("  IncludeDir = %s\n", Conf_IncludeDir);