eebf14a545
Fixes several security, scheduler, printing, and conformance issues.
17 lines
562 B
Plaintext
17 lines
562 B
Plaintext
$OpenBSD: patch-scheduler_ipp_c,v 1.4 2010/06/27 04:18:50 ajacoutot Exp $
|
|
|
|
Increase timeout for the PPD file to be copied so that it doesn't fail
|
|
on low-end configurations.
|
|
|
|
--- scheduler/ipp.c.orig Fri Apr 23 20:56:34 2010
|
|
+++ scheduler/ipp.c Sun Jun 27 06:09:51 2010
|
|
@@ -5245,7 +5245,7 @@ copy_model(cupsd_client_t *con, /* I - Client connect
|
|
FD_SET(temppipe[0], &input);
|
|
FD_SET(CGIPipes[0], &input);
|
|
|
|
- timeout.tv_sec = 30;
|
|
+ timeout.tv_sec = 90;
|
|
timeout.tv_usec = 0;
|
|
|
|
if ((i = select(maxfd, &input, NULL, NULL, &timeout)) < 0)
|