From 7fe9af588a47055522606ee04fa7efb7e19a01da Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 3 Oct 2024 17:51:21 -0400 Subject: [PATCH] Fix the default User-Agent string sent in requests. --- cups/usersys.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cups/usersys.c b/cups/usersys.c index 4c6e07757..9a9b69013 100644 --- a/cups/usersys.c +++ b/cups/usersys.c @@ -647,6 +647,7 @@ cupsSetUserAgent(const char *user_agent)/* I - User-Agent string or @code NULL@ cupsCopyString(cg->user_agent, CUPS_MINIMAL " IPP/2.1", sizeof(cg->user_agent)); break; } + return; } #ifdef _WIN32