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 /src/ircd.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 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -503,12 +503,13 @@ main(int argc, char *argv[]) init_chcap_usage_counts(); ConfigFileEntry.dpath = DPATH; - ConfigFileEntry.configfile = CPATH; /* Server configuration file */ - ConfigFileEntry.klinefile = KPATH; /* Server kline file */ - ConfigFileEntry.xlinefile = XPATH; /* Server xline file */ - ConfigFileEntry.dlinefile = DLPATH; /* dline file */ -// ConfigFileEntry.cresvfile = CRESVPATH; /* channel resv file */ -// ConfigFileEntry.nresvfile = NRESVPATH; /* nick resv file */ + ConfigFileEntry.configfile = CPATH; /* Server configuration file */ + ConfigFileEntry.klinefile = KPATH; /* Server kline file */ + ConfigFileEntry.klinefile = GPATH; /* Server gline file */ + ConfigFileEntry.xlinefile = XPATH; /* Server xline file */ + ConfigFileEntry.dlinefile = DLPATH; /* dline file */ + ConfigFileEntry.resvfile = RESVPATH; /* resv file */ + myargv = argv; umask(077); /* better safe than sorry --SRB */ |