diff options
-rw-r--r-- | modules/m_info.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/m_info.c b/modules/m_info.c index def6703..930b66e 100644 --- a/modules/m_info.c +++ b/modules/m_info.c @@ -317,7 +317,7 @@ static const struct InfoStruct info_table[] = }, { "failed_oper_notice", - OUTPUT_BOOLEAN, + OUTPUT_BOOLEAN_YN, &ConfigFileEntry.failed_oper_notice, "Inform opers if someone tries to /oper with the wrong password" }, @@ -347,7 +347,7 @@ static const struct InfoStruct info_table[] = }, { "anti_nick_flood", - OUTPUT_BOOLEAN, + OUTPUT_BOOLEAN_YN, &ConfigFileEntry.anti_nick_flood, "NICK flood protection" }, @@ -383,7 +383,7 @@ static const struct InfoStruct info_table[] = }, { "warn_no_nline", - OUTPUT_BOOLEAN, + OUTPUT_BOOLEAN_YN, &ConfigFileEntry.warn_no_nline, "Display warning if connecting server lacks N-line" }, @@ -455,19 +455,19 @@ static const struct InfoStruct info_table[] = }, { "ping_cookie", - OUTPUT_BOOLEAN, + OUTPUT_BOOLEAN_YN, &ConfigFileEntry.ping_cookie, "Require ping cookies to connect" }, { "no_oper_flood", - OUTPUT_BOOLEAN, + OUTPUT_BOOLEAN_YN, &ConfigFileEntry.no_oper_flood, "Reduce flood control for operators" }, { "true_no_oper_flood", - OUTPUT_BOOLEAN, + OUTPUT_BOOLEAN_YN, &ConfigFileEntry.true_no_oper_flood, "Completely disable flood control for operators" }, @@ -490,8 +490,8 @@ static const struct InfoStruct info_table[] = "Minimum time between client reconnects" }, { - "glines", - OUTPUT_BOOLEAN, + "gline_enable", + OUTPUT_BOOLEAN_YN, &ConfigFileEntry.glines, "G-line (network-wide K-line) support" }, |