Author: Kev <klmitch@mit.edu>
authorKevin L. Mitchell <klmitch@mit.edu>
Sun, 10 Jun 2001 10:44:00 +0000 (10:44 +0000)
committerKevin L. Mitchell <klmitch@mit.edu>
Sun, 10 Jun 2001 10:44:00 +0000 (10:44 +0000)
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

ChangeLog
ircd/ircd.c

index 0cf881c3bdfe7d53428fb9f40ecb476a542aaa3f..8d337c83e97c20917dc86dba8c3f4a7149b2ed09 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-06-10  Kevin L. Mitchell  <klmitch@mit.edu>
+
+       * ircd/ircd.c: don't check LPATH for accessibility at all
+
 2001-06-08  Kevin L. Mitchell  <klmitch@mit.edu>
 
        * ircd/s_serv.c (server_estab): send a +h flag in our SERVER
index d6085344441600988cc0412cbb60c8adbbecd8c5..92538605e82adb421a05d0d05144f278f255c6ae 100644 (file)
@@ -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);