You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The scheduler is looking for an attribute "document-name", BUT the client ONLY sends this attribute when printing more than one file per job:
in cups/util.c this attribute is sent in cupsPrintFiles2 ONLY when num_files > 1 .
Suggested patch attached.
Regards,
Opher Shachar.
The text was updated successfully, but these errors were encountered:
Version: 1.3-current
CUPS.org User: opher
Please look at scheduler/ipp.c line 7637:
doc_name = ippFindAttribute(con->request, "document-name", IPP_TAG_NAME);
filetype = mimeFileType(MimeDatabase, con->filename,
doc_name ? doc_name->values[0].string.text : NULL,
&compression);
The scheduler is looking for an attribute "document-name", BUT the client ONLY sends this attribute when printing more than one file per job:
in cups/util.c this attribute is sent in cupsPrintFiles2 ONLY when num_files > 1 .
Suggested patch attached.
Regards,
Opher Shachar.
The text was updated successfully, but these errors were encountered: