]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Clear the shared flag on local queues (Issue #5008)
authorMichael Sweet <michael.r.sweet@gmail.com>
Fri, 26 May 2017 01:05:19 +0000 (21:05 -0400)
committerMichael Sweet <michael.r.sweet@gmail.com>
Fri, 26 May 2017 01:05:19 +0000 (21:05 -0400)
CHANGES.md
scheduler/ipp.c

index 9e7f7ace2044012876e99960f5809eb3f28640e8..52b1c04f0051de74a0fc236e448756c83ba6b404 100644 (file)
@@ -16,8 +16,9 @@ CHANGES IN CUPS V2.2.4
 - IPP Everywhere improvements (Issue #4998)
 - Fixed the "cancel all jobs" function in the web interface for several
   languages (Issue #4999)
-- The scheduler was not deleting temporary queues, leaving behind PPD files
+- The scheduler was not deleting local queues, leaving behind PPD files
   (Issue #5003)
+- Local queues were incorrectly shared (Issue #5008)
 
 
 CHANGES IN CUPS V2.2.3
index 2525e58c3b127bf378128fcb273273af2a59e61e..7bc5e3945cdfcc0951dd584ff24bf8946b7b8bfb 100644 (file)
@@ -5479,6 +5479,8 @@ create_local_printer(
     return;
   }
 
+  printer->shared = 0;
+
   cupsdSetDeviceURI(printer, ippGetString(device_uri, 0, NULL));
 
   if (printer_geo_location)