pespin has uploaded this change for review.
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-remsim refs/changes/47/41947/1
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>
To view, visit change 41947. To unsubscribe, or for help writing mail filters, visit settings.