src/ircd: Missed case where ircd.conf is unreadable to the ircd
This commit is contained in:
parent
adef4da10c
commit
65d921173c
1 changed files with 1 additions and 1 deletions
|
@ -621,7 +621,7 @@ main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Make sure config file exists -- Quora */
|
/* Make sure config file exists -- Quora */
|
||||||
if( access( CPATH, F_OK ) == -1 ) {
|
if( access( CPATH, F_OK|R_OK ) == -1 ) {
|
||||||
inotice("FATAL: No config file found at %s, exiting", CPATH);
|
inotice("FATAL: No config file found at %s, exiting", CPATH);
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue