diff options
author | 2002-06-13 06:40:28 +0000 | |
---|---|---|
committer | 2002-06-13 06:40:28 +0000 | |
commit | 76193f34833c31b68f87b2397d5ed700319176ee (patch) | |
tree | 648ba2bdb5ed9d583794e02ad94fb73c84e2f1ef | |
parent | Scrub rules are now numbered properly. my bad. ok frantzen@ (diff) | |
download | wireguard-openbsd-76193f34833c31b68f87b2397d5ed700319176ee.tar.xz wireguard-openbsd-76193f34833c31b68f87b2397d5ed700319176ee.zip |
i heard in the bar that this breaks things
-rw-r--r-- | libexec/ftpd/extern.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/ftpd/extern.h b/libexec/ftpd/extern.h index cb5fc8325c4..49a9083b0e8 100644 --- a/libexec/ftpd/extern.h +++ b/libexec/ftpd/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.8 2002/06/10 09:57:35 mpech Exp $ */ +/* $OpenBSD: extern.h,v 1.9 2002/06/13 06:40:28 deraadt Exp $ */ /* $NetBSD: extern.h,v 1.2 1995/04/11 02:44:49 cgd Exp $ */ /* @@ -108,9 +108,9 @@ int yyparse(void); union sockunion { struct sockinet { - socklen_t si_len; - sa_family_t si_family; - in_port_t si_port; + u_char si_len; + u_char si_family; + u_short si_port; } su_si; struct sockaddr_in su_sin; struct sockaddr_in6 su_sin6; |