diff options
author | 2002-09-06 22:00:03 +0000 | |
---|---|---|
committer | 2002-09-06 22:00:03 +0000 | |
commit | 9c04c362888cd384db453043993d60291350e967 (patch) | |
tree | 13259269f4938abe92538af1463996a221ca3a9e | |
parent | cope with INITQFNAMES without a ; (diff) | |
download | wireguard-openbsd-9c04c362888cd384db453043993d60291350e967.tar.xz wireguard-openbsd-9c04c362888cd384db453043993d60291350e967.zip |
socklen_t
-rw-r--r-- | usr.sbin/named/host/send.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/named/host/send.c b/usr.sbin/named/host/send.c index a401a6ddec6..1030b59c0d5 100644 --- a/usr.sbin/named/host/send.c +++ b/usr.sbin/named/host/send.c @@ -1,4 +1,4 @@ -/* $OpenBSD: send.c,v 1.3 2000/02/01 03:24:03 deraadt Exp $ */ +/* $OpenBSD: send.c,v 1.4 2002/09/06 22:00:03 deraadt Exp $ */ /* * Copyright (c) 1985, 1989 Regents of the University of California. @@ -733,7 +733,7 @@ input int buflen; /* remaining buffer size */ { fd_set fds; struct timeval wait; - int fromlen; + socklen_t fromlen; register int n; wait.tv_sec = timeout; |