From: George Chow Date: Thu, 18 Jun 2026 18:40:08 +0000 (-0700) Subject: Include arpa/inet.h in sim_client.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd837781fda5fe47efcec2049eea2736d22edf01;p=thirdparty%2Fkrb5.git Include arpa/inet.h in sim_client.c sim_client.c calls inet_ntoa() but does not include . On strict POSIX systems this causes an implicit-declaration warning or error. Add the missing include. --- diff --git a/src/appl/simple/client/sim_client.c b/src/appl/simple/client/sim_client.c index 6f42833756..a1d48caa9f 100644 --- a/src/appl/simple/client/sim_client.c +++ b/src/appl/simple/client/sim_client.c @@ -39,6 +39,7 @@ #include #include #include +#include #include #include "simple.h"