From: Markus Armbruster Date: Sun, 27 Dec 2020 06:30:41 +0000 (+0100) Subject: info: Add #include for portability X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=e91b4e3b6e3f575246a7ba650107d9b6c4015178;hp=c3eb998396da8b9beee4f5f4caffa0502f692c05 info: Add #include for portability We get strncasecmp() from . This is a BSDism; POSIX provides it in . Missed in commit 8fdd0259f2d, v4.2.19. Signed-off-by: Markus Armbruster --- diff --git a/src/lib/commands/info.c b/src/lib/commands/info.c index 6549f24e9..cd9d4a008 100644 --- a/src/lib/commands/info.c +++ b/src/lib/commands/info.c @@ -41,6 +41,7 @@ #include #include #if !defined(_WIN32) +#include #include #endif #include "commands.h"