]> 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:39:25 +0000 (15:39 -0500)
committerMichael R Sweet <michael.r.sweet@gmail.com>
Fri, 9 Mar 2018 20:39:25 +0000 (15:39 -0500)
CHANGES.md
backend/ipp.c

index afae3ff3ee3a9f82ec98d41487c4a64ff1ee84ec..8c83350d2ade521ddd5cd039bb73cdca8bbbb170 100644 (file)
@@ -1,9 +1,11 @@
-CHANGES - 2.3rc1 - 2018-03-08
+CHANGES - 2.3rc1 - 2018-03-09
 =============================
 
 Changes in CUPS v2.3rc1
 -----------------------
 
+- Kerberized printing to another CUPS server did not work correctly
+  (Issue #5233)
 - Fixed installation of filters (Issue #5247)
 - 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)
index a61f8e9dddb69632b5585377823cb14baa69e8ae..dbbb029f189020d5dfff2878ae4694d46246a3b2 100644 (file)
@@ -355,8 +355,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 */