diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-12-20 15:49:20 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-12-20 15:49:20 +0000 |
commit | 6a8fbe2b113f09eef738c3cb4ffb7f1371e2013c (patch) | |
tree | c53e9335607f6b867bf407a691b671b3ca81ad3f /modules/m_info.c | |
parent | 90d091539469c268a35b9632644efa399f5186e1 (diff) |
- /info now also shows pathnames of g-/x-line database files
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1702 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules/m_info.c')
-rw-r--r-- | modules/m_info.c | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/modules/m_info.c b/modules/m_info.c index 2e4d7be..026f687 100644 --- a/modules/m_info.c +++ b/modules/m_info.c @@ -68,25 +68,43 @@ static const struct InfoStruct info_table[] = "CPATH", OUTPUT_STRING, &ConfigFileEntry.configfile, - "Path to Main Configuration File" + "Path to main configuration file" }, { "DPATH", OUTPUT_STRING, &ConfigFileEntry.dpath, - "Directory Containing Configuration Files" + "Directory containing configuration files" }, { "DLPATH", OUTPUT_STRING, &ConfigFileEntry.dlinefile, - "Path to D-line File" + "Path to D-line database file" }, { "KPATH", OUTPUT_STRING, &ConfigFileEntry.klinefile, - "Path to K-line File" + "Path to K-line database file" + }, + { + "GPATH", + OUTPUT_STRING, + &ConfigFileEntry.glinefile, + "Path to G-line database file" + }, + { + "XPATH", + OUTPUT_STRING, + &ConfigFileEntry.xlinefile, + "Path to X-line database file" + }, + { + "RESVPATH", + OUTPUT_STRING, + &ConfigFileEntry.xlinefile, + "Path to resv database file" }, { "network_name", @@ -278,7 +296,7 @@ static const struct InfoStruct info_table[] = "failed_oper_notice", OUTPUT_BOOLEAN, &ConfigFileEntry.failed_oper_notice, - "Inform opers if someone /oper's with the wrong password" + "Inform opers if someone tries to /oper with the wrong password" }, { "dots_in_ident", |