diff options
author | 1997-07-16 22:33:45 +0000 | |
---|---|---|
committer | 1997-07-16 22:33:45 +0000 | |
commit | a353198a91b5ea5c65b51da2580e5679485d5651 (patch) | |
tree | 3b1be44ae0beef102d1b936c96c51da6c55644e0 /lib | |
parent | proto yp_maplist (diff) | |
download | wireguard-openbsd-a353198a91b5ea5c65b51da2580e5679485d5651.tar.xz wireguard-openbsd-a353198a91b5ea5c65b51da2580e5679485d5651.zip |
in rejected(), RPC_MISMATCH is what we are interested in; christos
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/rpc/rpc_prot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/rpc_prot.c b/lib/libc/rpc/rpc_prot.c index 453d23bbde1..8314e0b0176 100644 --- a/lib/libc/rpc/rpc_prot.c +++ b/lib/libc/rpc/rpc_prot.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: rpc_prot.c,v 1.3 1996/08/19 08:31:49 tholo Exp $"; +static char *rcsid = "$OpenBSD: rpc_prot.c,v 1.4 1997/07/16 22:33:45 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -227,7 +227,7 @@ rejected(rjct_stat, error) switch (rjct_stat) { - case RPC_VERSMISMATCH: + case RPC_MISMATCH: error->re_status = RPC_VERSMISMATCH; return; |