]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix Kerberized IPP printing (Issue #5233)
authorMichael R Sweet <michael.r.sweet@gmail.com>
Fri, 9 Mar 2018 20:40:11 +0000 (15:40 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Fri, 9 Mar 2018 20:41:19 +0000 (15:41 -0500)
CHANGES.md
backend/ipp.c

index 2e50db5e078d7b1546ae604cd8243c9a9cfa8f3a..799abc18deb5d540cac057b9ed7cd35061cd024d 100644 (file)
@@ -1,4 +1,4 @@
-CHANGES - 2.2.7 - 2018-03-08
+CHANGES - 2.2.7 - 2018-03-09
 ============================
 
 
@@ -15,6 +15,8 @@ Changes in CUPS v2.2.7
 - Star Micronics printers need the "unidir" USB quirk rule (Issue #5251)
 - The scheduler now supports using temporary print queues for older IPP/1.1
   print queues like those shared by CUPS 1.3 and earlier (Issue #5241)
+- Kerberized printing to another CUPS server did not work correctly
+  (Issue #5233)
 - The `cupsRasterWritePixels` function did not correctly swap bytes for some
   formats (Issue #5225)
 - Added a USB quirk rule for Canon MP280 series printers (Issue #5221)
index a2548c25d669ba5284cd9d58da9890e7e4e3c896..1eb8f64f33394038b6d13afb445fb5d01d8c0068 100644 (file)
@@ -360,8 +360,7 @@ main(int  argc,                             /* I - Number of command-line args */
   * that way.
   */
 
-  if (!getuid() && (value = getenv("AUTH_UID")) != NULL &&
-      !getenv("AUTH_PASSWORD"))
+  if (!getuid() && (value = getenv("AUTH_UID")) != NULL)
   {
     uid_t      uid = (uid_t)atoi(value);
                                        /* User ID */