]> git.pld-linux.org Git - packages/cyrus-imapd.git/commitdiff
- outdated.
authorkloczek <kloczek@pld-linux.org>
Fri, 24 Aug 2001 04:48:59 +0000 (04:48 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    cyrus-imapd-checkfd.patch -> 1.2

cyrus-imapd-checkfd.patch [deleted file]

diff --git a/cyrus-imapd-checkfd.patch b/cyrus-imapd-checkfd.patch
deleted file mode 100644 (file)
index 596425e..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
---- cyrus-imapd-2.0.14/master/master.c.wiget   Fri Jun 22 08:35:25 2001
-+++ cyrus-imapd-2.0.14/master/master.c Fri Jun 22 08:38:08 2001
-@@ -1279,7 +1279,7 @@
-           int y = Services[i].socket;
-           int j;
--          if (FD_ISSET(x, &rfds)) {
-+          if (x > 0 && FD_ISSET(x, &rfds)) {
-               r = read(x, &msg, sizeof(int));
-               if (r != sizeof(int)) {
-                   syslog(LOG_ERR, "got weird response from child: %x", i);
-@@ -1299,7 +1299,7 @@
-           }
-           if (Services[i].ready_workers == 0 && 
--              FD_ISSET(y, &rfds)) {
-+              y > 0 && FD_ISSET(y, &rfds)) {
-               /* huh, someone wants to talk to us */
-               spawn_service(&Services[i]);
-           }
This page took 0.147302 seconds and 4 git commands to generate.