Bump patchlevel; add more epoll support; assertion check in
[ircu2.10.12-pk.git] / ircd / ircd_log.c
index 8f5ac69d9223ea67f6fec7ad33771323bab395dc..02aeb135ede3d2eaa27d97bf4192beaab88b755f 100644 (file)
@@ -162,8 +162,8 @@ static struct LogDesc {
   S(OPER, -1, SNO_OLDREALOP),
   S(RESOLVER, -1, 0),
   S(SOCKET, -1, 0),
+  S(IAUTH, -1, SNO_NETWORK),
   S(DEBUG, -1, SNO_DEBUG),
-  S(OLDLOG, -1, 0),
 #undef S
   { LS_LAST_SYSTEM, 0, 0, -1, 0, -1, 0 }
 };
@@ -195,10 +195,8 @@ log_open(struct LogFile *lf)
 {
   /* only open the file if we haven't already */
   if (lf && lf->fd < 0) {
-    alarm(3); /* if NFS hangs, we hang only for 3 seconds */
     lf->fd = open(lf->file, O_WRONLY | O_CREAT | O_APPEND,
                  S_IRUSR | S_IWUSR);
-    alarm(0);
   }
 }