diff options
author | 2003-10-16 05:27:33 +0000 | |
---|---|---|
committer | 2003-10-16 05:27:33 +0000 | |
commit | 0275b36ca40438f3ed7315880fa882cb3c3b716e (patch) | |
tree | 2a9de737e25d843d247115eddf21dfa18eec2e5a | |
parent | more white (diff) | |
download | wireguard-openbsd-0275b36ca40438f3ed7315880fa882cb3c3b716e.tar.xz wireguard-openbsd-0275b36ca40438f3ed7315880fa882cb3c3b716e.zip |
poll() arg mistake. Tatoku Ogaito
-rw-r--r-- | usr.sbin/faithd/faithd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/faithd/faithd.c b/usr.sbin/faithd/faithd.c index f5d60831eaf..f52c4bfaad2 100644 --- a/usr.sbin/faithd/faithd.c +++ b/usr.sbin/faithd/faithd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: faithd.c,v 1.27 2003/09/02 23:35:24 itojun Exp $ */ +/* $OpenBSD: faithd.c,v 1.28 2003/10/16 05:27:33 itojun Exp $ */ /* $KAME: faithd.c,v 1.58 2002/09/08 01:12:30 itojun Exp $ */ /* @@ -382,7 +382,7 @@ again: } #endif - error = poll(pfd, maxfd, 0); + error = poll(pfd, maxfd, INFTIM); if (error < 0) { if (errno == EINTR) goto again; |