osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-remsim/+/41947?usp=email )
Change subject: rspro_server.c: Fix missing include for inet_ntoa() ......................................................................
rspro_server.c: Fix missing include for inet_ntoa()
This file was calling inet_ntoa() without including arpa/inet.h, which is the header defining the function according to man and posix documentation.
Change-Id: I49352bcc2b8e418e17453809354382bd37eb838e --- M src/server/rspro_server.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: osmith: Looks good to me, approved Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve
diff --git a/src/server/rspro_server.c b/src/server/rspro_server.c index 1cc1af1..4e3666c 100644 --- a/src/server/rspro_server.c +++ b/src/server/rspro_server.c @@ -3,6 +3,7 @@ #include <unistd.h> #include <pthread.h> #include <errno.h> +#include <arpa/inet.h>
#include <osmocom/core/linuxlist.h> #include <osmocom/core/select.h>