diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 22:00:04 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-09-06 22:00:04 +0000 |
commit | 2aa91eb1017d29650a2496e94312b6e1c9373160 (patch) | |
tree | 8f05e2da4ea6dcde3eb8af27d067e1aeb44ecdc5 /usr.sbin | |
parent | 7fdbf54d9fe9d3986571b4041d53233ca0ea0e41 (diff) |
socklen_t
Diffstat (limited to 'usr.sbin')
-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; |