From 4e064859b7e6b48b8e8d1a9b262ee399d5ddb25d Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 10 Feb 2026 08:55:08 +0100 Subject: [PATCH] wscutil: Fix build issue with missing strings.h include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CC src/wscutil.o src/wscutil.c: In function ‘wsc_device_type_from_subcategory_str’: src/wscutil.c:3043:30: error: implicit declaration of function ‘strcasecmp’; did you mean ‘strncmp’? [-Wimplicit-function-declaration] 3043 | if (!strcasecmp(subcategory_str, | ^~~~~~~~~~ | strncmp --- src/wscutil.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wscutil.c b/src/wscutil.c index 570c4d66..e273f935 100644 --- a/src/wscutil.c +++ b/src/wscutil.c @@ -28,6 +28,7 @@ #include #include #include +#include #include