]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The scheduler did not remove color profiles after deleting a printer (STR #4232)
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Thu, 13 Dec 2012 20:02:33 +0000 (20:02 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Thu, 13 Dec 2012 20:02:33 +0000 (20:02 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@10761 7a7537e8-13f0-0310-91df-b6672ffda945

CHANGES-1.6.txt
scheduler/colorman.c

index c45974b523067655623c9ab2535d454d9968b5ce..fee1be4d4569ebed7b7ce6902a45443c0ef73b36 100644 (file)
@@ -7,6 +7,8 @@ CHANGES IN CUPS V1.6.2
        - Security: All file, directory, user, and group settings are now stored
          in a separate cups-files.conf configuration file that cannot be set
          through the CUPS web interface or APIs (STR #4223)
+       - The scheduler did not remove color profiles after deleting a printer
+         (STR #4232)
        - The CUPS library did not always detect a timed out connection to the
          server which could cause temporary loss of printing from applications
          (STR #4187)
index ddb7a6fce3c30fc577c1ca1648d5df022fd28a3c..53cd03d8a5580320166d86c157da2bfacaa49740 100644 (file)
@@ -1128,7 +1128,7 @@ colord_delete_device(
   message = COLORD_DBUS_MSG(COLORD_DBUS_PATH, "DeleteDevice");
 
   dbus_message_iter_init_append(message, &args);
-  dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &device_id);
+  dbus_message_iter_append_basic(&args, DBUS_TYPE_OBJECT_PATH, &device_id);
 
  /*
   * Send the DeleteDevice request synchronously...