diff options
author | 2001-09-05 23:24:21 +0000 | |
---|---|---|
committer | 2001-09-05 23:24:21 +0000 | |
commit | e5ec82b8c21157d142f4d8c62425dadc432f5996 (patch) | |
tree | bc81b46e8befb4834dd364edf7d2341d90b8831b | |
parent | ElanSC520 Host-PCI (diff) | |
download | wireguard-openbsd-e5ec82b8c21157d142f4d8c62425dadc432f5996.tar.xz wireguard-openbsd-e5ec82b8c21157d142f4d8c62425dadc432f5996.zip |
Call do_select() with sigset_t *, not a sigset_t.
-rw-r--r-- | usr.sbin/amd/amd/nfs_start.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/amd/amd/nfs_start.c b/usr.sbin/amd/amd/nfs_start.c index 12bb9ddc04e..24198b0ba52 100644 --- a/usr.sbin/amd/amd/nfs_start.c +++ b/usr.sbin/amd/amd/nfs_start.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)nfs_start.c 8.1 (Berkeley) 6/6/93 - * $Id: nfs_start.c,v 1.5 2001/09/04 23:35:59 millert Exp $ + * $Id: nfs_start.c,v 1.6 2001/09/05 23:24:21 millert Exp $ */ #include "am.h" @@ -289,7 +289,7 @@ static serv_state run_rpc(P_void) dlog("Select waits for Godot"); #endif /* DEBUG */ - nsel = do_select(mask, omask, fdsn + 1, fdsp, &tvv); + nsel = do_select(&mask, &omask, fdsn + 1, fdsp, &tvv); switch (nsel) { |