summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2023-09-17 20:27:14 +0200
committerAlexander Barton <alex@barton.de>2023-09-17 20:27:14 +0200
commita7f448e713370c606fbad2a2f1fadef467638387 (patch)
tree90e18a6089cc7f3d33a1fb083931e8681a09341d /src
parent232c7382ded45775f777567183675c3c1f448807 (diff)
downloadngircd-a7f448e713370c606fbad2a2f1fadef467638387.tar.gz
ngircd-a7f448e713370c606fbad2a2f1fadef467638387.zip
Channel autojoin: Add missing variable in --configtest output
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 120db216..c1968ee0 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -488,6 +488,7 @@ Conf_Test( void )
 		printf("  Key = %s\n", predef_chan->key);
 		printf("  MaxUsers = %lu\n", predef_chan->maxusers);
 		printf("  Topic = %s\n", predef_chan->topic);
+		printf("  Autojoin = %s\n", yesno_to_str(predef_chan->autojoin));
 		printf("  KeyFile = %s\n\n", predef_chan->keyfile);
 	}