]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The web search incorrectly searched time-at-xxx values (STR #4652)
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Tue, 30 Jun 2015 16:13:38 +0000 (16:13 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Tue, 30 Jun 2015 16:13:38 +0000 (16:13 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12768 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES-2.0.txt
cgi-bin/ipp-var.c

index 771fd6b8f384e2853965b82346d2224caed70d9f..a3bd32c810ad375a8bae040e6c45b94985676250 100644 (file)
@@ -7,6 +7,7 @@ CHANGES IN CUPS V2.0.4
        - Fixed redirection in the web interface (STR #4538)
        - The IPP backend did not respond to side-channel requests (STR #4645)
        - The scheduler did not start all pending jobs at once (STR #4646)
+       - The web search incorrectly searched time-at-xxx values (STR #4652)
        - Documentation changes (STR #4651)
 
 
index 2aabe532294c196cff4aa0a91fd2c9bc6f09bf86..4b43e9cc089deaf74718300f25dc81631f837073 100644 (file)
@@ -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 */