Fix a compile warning on OpenBSD

This commit is contained in:
Sebastian Hahn 2010-08-22 13:58:23 +02:00
parent 34551cda6f
commit 2af6aadfe9
2 changed files with 6 additions and 0 deletions

3
changes/bug1848 Normal file
View File

@ -0,0 +1,3 @@
o Minor bugfixes:
- Squash a compile warning on OpenBSD. Reported by Tas, fixes bug 1848.

View File

@ -59,6 +59,9 @@
#ifdef HAVE_SYS_STAT_H #ifdef HAVE_SYS_STAT_H
#include <sys/stat.h> #include <sys/stat.h>
#endif #endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_ARPA_INET_H #ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h> #include <arpa/inet.h>
#endif #endif