components/cups/patches/22-16362516,16321334,15731683.patch
author Mike Sullivan <Mike.Sullivan@Oracle.COM>
Fri, 10 Jul 2015 17:54:55 -0700
branchs11-update
changeset 4630 d92f8909d69d
parent 2621 f16db03950b1
permissions -rw-r--r--
Close of build 27.

--- scheduler/ipp.c	Thu Mar 28 22:47:57 2013
+++ scheduler/ipp.c	Tue Apr  9 00:31:58 2013
@@ -7424,8 +7424,12 @@
       continue;
     }
 
-    if (username[0] && strcasecmp(username, job->username))
-      continue;
+    /*
+     * If no username is given, then it might be set to 'anonymous'.
+     * In this case we don't compare with job->username.
+     */
+    if (username[0] && strcasecmp(username, "anonymous") && strcasecmp(username, job->username))
+	continue;
 
     if (count > 0)
       ippAddSeparator(con->response);
@@ -8780,7 +8784,7 @@
    * Validate that the label associated with the job is acceptable for
    * printing on the printer.
    */
-  if (cupsdInPrinterLabelRange(job->slabel, dprinter) == 0)
+  if (job && (cupsdInPrinterLabelRange(job->slabel, dprinter) == 0))
   {
     send_ipp_status(con, IPP_NOT_AUTHORIZED, _("label violation."));
     return;