gst/rtsp/rtspconnection.c: Add <netinet/in.h> include and move <arpa/inet.h> include...
authorBenjamin Pineau <ben.pineau@gmail.com>
Fri, 16 Dec 2005 10:12:49 +0000 (10:12 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Fri, 16 Dec 2005 10:12:49 +0000 (10:12 +0000)
Original commit message from CVS:
* gst/rtsp/rtspconnection.c:
Add <netinet/in.h> include and move <arpa/inet.h> include
to make things work on OpenBSD as well (fixes #323717;
patch by: Benjamin Pineau)

ChangeLog
gst/rtsp/rtspconnection.c

index 50bf482..a1dfedc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/rtsp/rtspconnection.c:
+         Add <netinet/in.h> include and move <arpa/inet.h> include
+         to make things work on OpenBSD as well (fixes #323717;
+         patch by: Benjamin Pineau)
+
 2005-12-14  Edgard Lima <edgard.lima@indt.org.br>
 
        * gst/rtp/gstrtpspeexdepay.c:
index 248a4a2..ae39df4 100644 (file)
@@ -23,8 +23,9 @@
 #include <stdlib.h>
 #include <string.h>
 #include <netdb.h>
-#include <arpa/inet.h>
 #include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
 
 #include "rtspconnection.h"