components/cups/patches/22-16362516,16321334,15731683.patch
author Sean Wilcox <sean.wilcox@oracle.com>
Tue, 08 Nov 2016 11:16:49 -0700
changeset 7262 19860fd7b64f
parent 1281 f2d16b3e76db
permissions -rw-r--r--
24692363 restart of nova-compute went to maintenance

--- 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;