From: Kevin L. Mitchell Date: Sun, 10 Jun 2001 10:44:00 +0000 (+0000) Subject: Author: Kev X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=13a421287403ae13b02095023d3bea89a1b61485 Author: Kev Log message: Remove check on LPATH; it's not critical to the server's operation even in DEBUGMODE. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@494 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/ChangeLog b/ChangeLog index 0cf881c..8d337c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-06-10 Kevin L. Mitchell + + * ircd/ircd.c: don't check LPATH for accessibility at all + 2001-06-08 Kevin L. Mitchell * ircd/s_serv.c (server_estab): send a +h flag in our SERVER diff --git a/ircd/ircd.c b/ircd/ircd.c index d608534..9253860 100644 --- a/ircd/ircd.c +++ b/ircd/ircd.c @@ -573,11 +573,6 @@ int main(int argc, char **argv) { if (!check_file_access(SPATH, 'S', X_OK) || !check_file_access(configfile, 'C', R_OK)) return 4; - -#ifdef DEBUGMODE - if (!check_file_access(LPATH, 'L', W_OK)) - return 5; -#endif debug_init(thisServer.bootopt & BOOT_TTY); daemon_init(thisServer.bootopt & BOOT_TTY);