Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cups-browsed, driverless: request urf-supported attribute #86

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion utils/cups-browsed.c
Original file line number Diff line number Diff line change
Expand Up @@ -3849,7 +3849,8 @@ get_printer_attributes(const char* uri) {
"job-template",
"printer-defaults",
"printer-description",
"media-col-database"
"media-col-database",
"urf-supported"
};
/* Request printer properties via IPP to generate a PPD file for the
printer (mainly driverless-capable printers)
Expand Down
3 changes: 2 additions & 1 deletion utils/driverless.c
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,8 @@ generate_ppd (const char *uri)
"job-template",
"printer-defaults",
"printer-description",
"media-col-database"
"media-col-database",
"urf-supported"
};

/* Request printer properties via IPP to generate a PPD file for the
Expand Down