ircd: use ircd_paths for logFileName and pidFileName
This commit is contained in:
parent
704279e429
commit
2f545aad87
1 changed files with 5 additions and 2 deletions
|
@ -134,8 +134,8 @@ const char *ircd_paths[IRCD_PATH_COUNT] = {
|
||||||
[IRCD_PATH_LIBEXEC] = PKGLIBEXECDIR,
|
[IRCD_PATH_LIBEXEC] = PKGLIBEXECDIR,
|
||||||
};
|
};
|
||||||
|
|
||||||
const char *logFileName = LPATH;
|
const char *logFileName = NULL;
|
||||||
const char *pidFileName = PPATH;
|
const char *pidFileName = NULL;
|
||||||
|
|
||||||
void
|
void
|
||||||
ircd_shutdown(const char *reason)
|
ircd_shutdown(const char *reason)
|
||||||
|
@ -581,6 +581,9 @@ charybdis_main(int argc, char *argv[])
|
||||||
|
|
||||||
init_sys();
|
init_sys();
|
||||||
|
|
||||||
|
logFileName = ircd_paths[IRCD_PATH_IRCD_LOG];
|
||||||
|
pidFileName = ircd_paths[IRCD_PATH_IRCD_PID];
|
||||||
|
|
||||||
ConfigFileEntry.dpath = ircd_paths[IRCD_PATH_PREFIX];
|
ConfigFileEntry.dpath = ircd_paths[IRCD_PATH_PREFIX];
|
||||||
ConfigFileEntry.configfile = ircd_paths[IRCD_PATH_IRCD_CONF]; /* Server configuration file */
|
ConfigFileEntry.configfile = ircd_paths[IRCD_PATH_IRCD_CONF]; /* Server configuration file */
|
||||||
ConfigFileEntry.connect_timeout = 30; /* Default to 30 */
|
ConfigFileEntry.connect_timeout = 30; /* Default to 30 */
|
||||||
|
|
Loading…
Reference in a new issue