Blame SOURCES/cups-driverd-timeout.patch

e8b0e2
diff -up cups-1.7b1/scheduler/ipp.c.driverd-timeout cups-1.7b1/scheduler/ipp.c
e8b0e2
--- cups-1.7b1/scheduler/ipp.c.driverd-timeout	2013-04-19 12:24:43.003841810 +0200
e8b0e2
+++ cups-1.7b1/scheduler/ipp.c	2013-04-19 12:24:43.204839107 +0200
e8b0e2
@@ -4556,7 +4556,7 @@ copy_model(cupsd_client_t *con,		/* I -
e8b0e2
   close(temppipe[1]);
e8b0e2
 
e8b0e2
  /*
e8b0e2
-  * Wait up to 30 seconds for the PPD file to be copied...
e8b0e2
+  * Wait up to 70 seconds for the PPD file to be copied...
e8b0e2
   */
e8b0e2
 
e8b0e2
   total = 0;
e8b0e2
@@ -4576,7 +4576,7 @@ copy_model(cupsd_client_t *con,		/* I -
e8b0e2
     FD_SET(temppipe[0], &input);
e8b0e2
     FD_SET(CGIPipes[0], &input);
e8b0e2
 
e8b0e2
-    timeout.tv_sec  = 30;
e8b0e2
+    timeout.tv_sec  = 70;
e8b0e2
     timeout.tv_usec = 0;
e8b0e2
 
e8b0e2
     if ((i = select(maxfd, &input, NULL, NULL, &timeout)) < 0)