rlescak / rpms / cups

Forked from rpms/cups 2 years ago
Clone
34a2caa
diff -up cups-1.3.7/scheduler/ipp.c.driverd-timeout cups-1.3.7/scheduler/ipp.c
34a2caa
--- cups-1.3.7/scheduler/ipp.c.driverd-timeout	2008-07-15 13:40:51.000000000 +0100
34a2caa
+++ cups-1.3.7/scheduler/ipp.c	2008-07-15 13:40:51.000000000 +0100
34a2caa
@@ -4293,7 +4293,7 @@ copy_model(cupsd_client_t *con,		/* I - 
29a56f2
   close(temppipe[1]);
29a56f2
 
29a56f2
  /*
29a56f2
-  * Wait up to 30 seconds for the PPD file to be copied...
29a56f2
+  * Wait up to 70 seconds for the PPD file to be copied...
29a56f2
   */
29a56f2
 
29a56f2
   total = 0;
34a2caa
@@ -4315,7 +4315,7 @@ copy_model(cupsd_client_t *con,		/* I - 
34a2caa
     FD_SET(temppipe[0], &input);
34a2caa
     FD_SET(CGIPipes[0], &input);
29a56f2
 
29a56f2
-    timeout.tv_sec  = 30;
29a56f2
+    timeout.tv_sec  = 70;
29a56f2
     timeout.tv_usec = 0;
29a56f2
 
34a2caa
     if ((i = select(maxfd, &input, NULL, NULL, &timeout)) < 0)