From 118383e90a4f198ba73acaafff397fab4e5be029 Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 16 May 2014 10:59:59 +0000 Subject: - m_info.c:info_table[]: cosmetical fixes git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3544 82007160-df01-0410-b94d-b575c5fd34c7 --- modules/m_info.c | 16 ++++++++-------- 1 file 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" }, -- cgit