3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2026-02-11 06:58:04 +01:00

wscutil: Fix build issue with missing strings.h include

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
This commit is contained in:
Marcel Holtmann 2026-02-10 08:55:08 +01:00
parent 0a73e18fe2
commit 4e064859b7

View File

@ -28,6 +28,7 @@
#include <stdarg.h>
#include <errno.h>
#include <stdio.h>
#include <strings.h>
#include <ell/ell.h>