summaryrefslogtreecommitdiff
path: root/cgi-bin
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2015-06-30 16:13:38 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2015-06-30 16:13:38 +0000
commit945bef529028f571a7140b0446331cbd739028b1 (patch)
treed1f0fb5b09689078f6c5813ae825a914ab526bc7 /cgi-bin
parent0d53bff197149d4328d388093e9a71786e37415e (diff)
downloadcups-945bef529028f571a7140b0446331cbd739028b1.tar.gz
The web search incorrectly searched time-at-xxx values (STR #4652)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12768 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'cgi-bin')
-rw-r--r--cgi-bin/ipp-var.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cgi-bin/ipp-var.c b/cgi-bin/ipp-var.c
index 2aabe5322..4b43e9cc0 100644
--- a/cgi-bin/ipp-var.c
+++ b/cgi-bin/ipp-var.c
@@ -222,6 +222,9 @@ cgiGetIPPObjects(ipp_t *response, /* I - IPP response */
break;
case IPP_TAG_INTEGER :
+ if (!strncmp(ippGetName(attr), "time-at-", 8))
+ break; /* Ignore time-at-xxx */
+
for (i = 0; !add && i < attr->num_values; i ++)
{
char buf[255]; /* Number buffer */