1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-24 08:29:04 +00:00

Change NETINET_IN_SYSTEM_H definitions to NETINET_IN_SYSTM_H (missing the final E) because that is how the actual include filename is spelled. Also removed instances of HAVE_NETINET_IN_SYSTEM_H since they aren't used

This commit is contained in:
fyodor
2010-07-14 05:43:19 +00:00
parent 16232ff34c
commit 5539c9e39e
3 changed files with 10 additions and 10 deletions

View File

@@ -165,11 +165,11 @@ void *realloc();
#endif
#include <arpa/inet.h>
#ifndef NETINET_IN_SYSTEM_H /* why the HELL does OpenBSD not do this? */
#ifndef NETINET_IN_SYSTM_H /* This guarding is needed for at least some versions of OpenBSD */
#include <netinet/in_systm.h> /* defines n_long needed for netinet/ip.h */
#define NETINET_IN_SYSTEM_H
#define NETINET_IN_SYSTM_H
#endif
#ifndef NETINET_IP_H /* why the HELL does OpenBSD not do this? */
#ifndef NETINET_IP_H /* This guarding is needed for at least some versions of OpenBSD */
#include <netinet/ip.h>
#define NETINET_IP_H
#endif