From: Michael R Sweet Date: Thu, 16 Apr 2026 13:31:55 +0000 (-0400) Subject: Send options for PCLm content as well (Issue #1551) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fed06aad32ed33bfec15bf565b51756721ea08a;p=thirdparty%2Fcups.git Send options for PCLm content as well (Issue #1551) --- diff --git a/backend/ipp.c b/backend/ipp.c index c05392f9d1..92ad946ec6 100644 --- a/backend/ipp.c +++ b/backend/ipp.c @@ -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);