Blame SOURCES/0001-cups-browsed-Always-save-.-default-option-entries-fr.patch
|
|
c5d428 |
From 144322be6e06ff12f101fc35e472d62978861e28 Mon Sep 17 00:00:00 2001
|
|
|
c5d428 |
From: Till Kamppeter <till.kamppeter@gmail.com>
|
|
|
c5d428 |
Date: Thu, 15 Apr 2021 14:26:44 +0200
|
|
|
c5d428 |
Subject: [PATCH] cups-browsed: Always save "...-default" option entries from
|
|
|
c5d428 |
printers.conf
|
|
|
c5d428 |
|
|
|
c5d428 |
(cherry picked from commit cdd61132e1719a88dd8006c65e8e260c1aaa02e4)
|
|
|
c5d428 |
---
|
|
|
c5d428 |
utils/cups-browsed.c | 4 +---
|
|
|
c5d428 |
2 files changed, 4 insertions(+), 3 deletions(-)
|
|
|
c5d428 |
|
|
|
c5d428 |
diff --git a/utils/cups-browsed.c b/utils/cups-browsed.c
|
|
|
c5d428 |
index bffd1e09..0c335055 100644
|
|
|
c5d428 |
--- a/utils/cups-browsed.c
|
|
|
c5d428 |
+++ b/utils/cups-browsed.c
|
|
|
c5d428 |
@@ -5648,9 +5648,7 @@ record_printer_options(const char *printer) {
|
|
|
c5d428 |
strcasecmp(key + strlen(key) - strlen(*ptr) + 1, *ptr + 1) == 0))
|
|
|
c5d428 |
break;
|
|
|
c5d428 |
if (*ptr != NULL) {
|
|
|
c5d428 |
- if (strcasecmp(key, CUPS_BROWSED_DEST_PRINTER "-default") != 0 &&
|
|
|
c5d428 |
- (ppdname == NULL ||
|
|
|
c5d428 |
- strncasecmp(key + strlen(key) - 8, "-default", 8))) {
|
|
|
c5d428 |
+ if (strcasecmp(key, CUPS_BROWSED_DEST_PRINTER "-default") != 0) {
|
|
|
c5d428 |
ippAttributeString(attr, buf, sizeof(buf));
|
|
|
c5d428 |
buf[sizeof(buf) - 1] = '\0';
|
|
|
c5d428 |
c = buf;
|
|
|
c5d428 |
--
|
|
|
c5d428 |
2.30.2
|