From: Michael R Sweet Date: Fri, 9 Mar 2018 20:40:11 +0000 (-0500) Subject: Fix Kerberized IPP printing (Issue #5233) X-Git-Tag: v2.2.7~19 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2aee052bf5b47e7dc8448863d37deedb1080869b;p=thirdparty%2Fcups.git Fix Kerberized IPP printing (Issue #5233) --- diff --git a/CHANGES.md b/CHANGES.md index 2e50db5e07..799abc18de 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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) diff --git a/backend/ipp.c b/backend/ipp.c index a2548c25d6..1eb8f64f33 100644 --- a/backend/ipp.c +++ b/backend/ipp.c @@ -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 */