From: msweet Date: Wed, 24 Jun 2015 19:55:31 +0000 (+0000) Subject: The IPP backend did not respond to side-channel requests (STR #4645) X-Git-Tag: v2.2b1~247 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=911cdc0da81ff97fbcd84c6172addf3d4c913b4f;p=thirdparty%2Fcups.git The IPP backend did not respond to side-channel requests (STR #4645) git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12757 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/CHANGES-2.0.txt b/CHANGES-2.0.txt index 680c107799..73a0c7529b 100644 --- a/CHANGES-2.0.txt +++ b/CHANGES-2.0.txt @@ -5,6 +5,7 @@ CHANGES IN CUPS V2.0.4 - Fixed a bug in cupsRasterWritePixels (STR #4650) - Fixed redirection in the web interface (STR #4538) + - The IPP backend did not respond to side-channel requests (STR #4645) CHANGES IN CUPS V2.0.3 diff --git a/backend/ipp.c b/backend/ipp.c index 387891f144..1f7e82b452 100644 --- a/backend/ipp.c +++ b/backend/ipp.c @@ -1571,6 +1571,7 @@ main(int argc, /* I - Number of command-line args */ FD_ZERO(&input); FD_SET(fd, &input); FD_SET(snmp_fd, &input); + FD_SET(CUPS_SC_FD, &input); while (select(fd > snmp_fd ? fd + 1 : snmp_fd + 1, &input, NULL, NULL, NULL) <= 0 && !job_canceled);