From Albert Chin:

This fixes a redefine of AF_INET6 on AIX 4.3.3. We pull in <sys/socket.h> so the OS can define it first, nullifying the #define in epan/inet_v6defs.h.

svn path=/trunk/; revision=18522
This commit is contained in:
Anders Broman 2006-06-20 05:59:55 +00:00
parent c72d4e8f2e
commit 0e1b053f82

View file

@ -96,6 +96,11 @@
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#include <glib.h>
#include <epan/conversation.h>