diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-26 09:40:31 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-26 09:40:31 +0000 |
commit | 44a9edf9441e53ab08e655d948877c7b63586072 (patch) | |
tree | 27faf5d890c933afdae573a66a3c70ce7c9575f6 /sys | |
parent | 803007bbe9163ffb110117c1605dcb8d38ea876b (diff) |
sockaddr_ipx members order change
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netipx/ipx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netipx/ipx.h b/sys/netipx/ipx.h index 282ceee60f4..278087be34b 100644 --- a/sys/netipx/ipx.h +++ b/sys/netipx/ipx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx.h,v 1.2 1996/10/26 09:34:48 mickey Exp $ */ +/* $OpenBSD: ipx.h,v 1.3 1996/10/26 09:40:30 mickey Exp $ */ /*- * @@ -131,8 +131,8 @@ struct ipx_addr { struct sockaddr_ipx { u_int8_t sipx_len; u_int8_t sipx_family; - struct ipx_addr sipx_addr; u_int16_t sipx_type; + struct ipx_addr sipx_addr; }; #define sipx_net sipx_addr.ipx_net #define sipx_network sipx_addr.ipx_net.l_net |