]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The IPP backend did not respond to side-channel requests (STR #4645)
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 24 Jun 2015 19:55:31 +0000 (19:55 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 24 Jun 2015 19:55:31 +0000 (19:55 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12757 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES-2.0.txt
backend/ipp.c

index 680c1077992da6517a16661a49fb70bd5f221b37..73a0c7529b39f7b9e08295e0d2291e3db99740cb 100644 (file)
@@ -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
index 387891f14451ef3484cfec41cd870580c33fdff9..1f7e82b452b538294226ab80567e82c97555598e 100644 (file)
@@ -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);