]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Send options for PCLm content as well (Issue #1551)
authorMichael R Sweet <msweet@msweet.org>
Thu, 16 Apr 2026 13:31:55 +0000 (09:31 -0400)
committerMichael R Sweet <msweet@msweet.org>
Thu, 16 Apr 2026 13:31:55 +0000 (09:31 -0400)
backend/ipp.c

index c05392f9d115df51a82ddb5a2a2e2b4492fa3dbc..92ad946ec6a2114634e534108cf7bd6abf88a29d 100644 (file)
@@ -595,7 +595,8 @@ main(int  argc,                             /* I - Number of command-line args */
   {
     num_files    = 0;
     files        = NULL;
-    send_options = !_cups_strcasecmp(final_content_type, "application/pdf") ||
+    send_options = !_cups_strcasecmp(final_content_type, "application/pclm") ||
+                   !_cups_strcasecmp(final_content_type, "application/pdf") ||
                    !_cups_strcasecmp(final_content_type, "application/vnd.cups-pdf") ||
                    !_cups_strncasecmp(final_content_type, "image/", 6);