diff options
| author | matt <matt@NetBSD.org> | 1998-09-19 21:44:37 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 1998-09-19 21:44:37 +0000 |
| commit | ca5d93c91ea07950a514577fe4b52bfcd5dd6fee (patch) | |
| tree | aba7f2382906a7a408a1f52977da8c0f454db27b /lib/libpcap | |
| parent | 1115e2e525842b89490c8f980a5485dbff8b07dc (diff) | |
Switch to the same padding ULTRIX and Digital UNIX use.
Diffstat (limited to 'lib/libpcap')
| -rw-r--r-- | lib/libpcap/pcap-int.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libpcap/pcap-int.h b/lib/libpcap/pcap-int.h index a900d1f5f6d..ef6ede03fc0 100644 --- a/lib/libpcap/pcap-int.h +++ b/lib/libpcap/pcap-int.h @@ -1,4 +1,4 @@ -/* $NetBSD: pcap-int.h,v 1.5 1998/09/18 16:43:36 matt Exp $ */ +/* $NetBSD: pcap-int.h,v 1.6 1998/09/19 21:44:37 matt Exp $ */ /* * Copyright (c) 1994, 1995, 1996 @@ -109,8 +109,9 @@ int yylex(void); int pcap_offline_read(pcap_t *, int, pcap_handler, u_char *); int pcap_read(pcap_t *, int cnt, pcap_handler, u_char *); -/* Ultrix pads to make everything line up on a nice boundary */ -#if defined(ultrix) || (defined(__alpha) && !defined(__NetBSD__)) +/* ULTRIX, Digital UNIX & NetBSD pad to make everything line + up on a nice boundary */ +#if defined(ultrix) || defined(__alpha) || defined(__NetBSD__) #define PCAP_FDDIPAD 3 #endif |
