diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-28 15:22:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-28 15:22:31 +0000 |
commit | e6800b95dd25809c6c1281c44f709895f1476fc8 (patch) | |
tree | 1dc9423ae533e5391930654c4a59f3c0bd0ba0ee /sys/netinet/in.h | |
parent | 78c837988a009d157cdf50d674f251cc2151b130 (diff) |
Make struct in_addr contain an in_addr_t since that's what
in_addr_t is for (same basic type so we don't break anything).
Diffstat (limited to 'sys/netinet/in.h')
-rw-r--r-- | sys/netinet/in.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in.h b/sys/netinet/in.h index 4238c797f07..88d7848dc31 100644 --- a/sys/netinet/in.h +++ b/sys/netinet/in.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in.h,v 1.9 1997/07/02 00:18:55 millert Exp $ */ +/* $OpenBSD: in.h,v 1.10 1997/07/28 15:22:30 millert Exp $ */ /* $NetBSD: in.h,v 1.20 1996/02/13 23:41:47 christos Exp $ */ /* @@ -122,7 +122,7 @@ * Internet address (a structure for historical reasons) */ struct in_addr { - u_int32_t s_addr; + in_addr_t s_addr; }; /* |