Skip to content

Commit

Permalink
Default BrowseRemoteProtocols should not include "cups" protocol
Browse files Browse the repository at this point in the history
Works around CVE-2024-47176, the fix will be complete removal of CUPS
Browsing functionality
  • Loading branch information
tillkamppeter committed Sep 29, 2024
1 parent 10fb02e commit b7461ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,9 @@ AC_SUBST(GIO_UNIX_CFLAGS)
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)
Expand Down

0 comments on commit b7461ec

Please sign in to comment.