1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-27 20:36:18 +00:00

Channel autojoin: Add missing variable in --configtest output

This commit is contained in:
Alexander Barton 2023-09-17 20:27:14 +02:00
parent 232c7382de
commit a7f448e713

View File

@ -488,6 +488,7 @@ Conf_Test( void )
printf(" Key = %s\n", predef_chan->key); printf(" Key = %s\n", predef_chan->key);
printf(" MaxUsers = %lu\n", predef_chan->maxusers); printf(" MaxUsers = %lu\n", predef_chan->maxusers);
printf(" Topic = %s\n", predef_chan->topic); 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); printf(" KeyFile = %s\n\n", predef_chan->keyfile);
} }