File: 0005-CVE-2024-47176.patch

package info (click to toggle)
cups-filters 1.28.17-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,592 kB
  • sloc: ansic: 54,531; cpp: 7,037; sh: 1,911; makefile: 964; xml: 127; perl: 73; php: 28; python: 8
file content (22 lines) | stat: -rw-r--r-- 977 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DEscription: Default BrowseRemoteProtocols should not include "cups" protocol.


 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: cups-filters-1.28.17/configure.ac
===================================================================
--- cups-filters-1.28.17.orig/configure.ac	2024-09-27 15:38:49.000000000 +0200
+++ cups-filters-1.28.17/configure.ac	2024-09-27 16:31:37.079375228 +0200
@@ -428,9 +428,9 @@
 AC_SUBST(GIO_UNIX_LIBS)
 
 AC_ARG_WITH([browseremoteprotocols],
-	[AS_HELP_STRING([--with-browseremoteprotocols=value], [Set which protocols to listen for in cups-browsed (default: dnssd cups)])],
+	[AS_HELP_STRING([--with-browseremoteprotocols=value], [Set which protocols to listen for in cups-browsed (default: dnssd)])],
 	[with_browseremoteprotocols="$withval"],
-	[with_browseremoteprotocols="dnssd cups"]
+	[with_browseremoteprotocols="dnssd"]
 )
 BROWSEREMOTEPROTOCOLS="$with_browseremoteprotocols"
 AC_SUBST(BROWSEREMOTEPROTOCOLS)