summaryrefslogtreecommitdiff
path: root/backend/ipp.c
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2015-06-24 19:55:31 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2015-06-24 19:55:31 +0000
commit911cdc0da81ff97fbcd84c6172addf3d4c913b4f (patch)
treeed5f5b7b9851ebb37d0ece73d518bce6b93fcad8 /backend/ipp.c
parent3b20f9f50ceaa350285909302f00b307103b4079 (diff)
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
Diffstat (limited to 'backend/ipp.c')
-rw-r--r--backend/ipp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/ipp.c b/backend/ipp.c
index 387891f14..1f7e82b45 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);