Now that nfsm_reply() does not usually set 'error' to 0, we need

to do it explicitly in nfsrv_noop so that the reply gets sent back
to the client. This fixes the generation of a selection of RPC
error replies (RPC_PROGMISMATCH, RPC_PROGUNAVAIL, RPC_PROCUNAVAIL
etc.) that are used by some clients to detect support for optional
protocols and features.

Reviewed by:	peter
Reported by:	Thomas Quinot <quinot@inf.enst.fr>
PR:		kern/31479
This commit is contained in:
Ian Dowse 2001-10-25 19:07:56 +00:00
parent 617b3dd758
commit 4f6434bdde
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=85498

View File

@ -4000,6 +4000,7 @@ nfsrv_noop(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
else
error = EPROCUNAVAIL;
nfsm_reply(0);
error = 0;
nfsmout:
return (error);
}