xdrgen: Remove check for "nfs_ok" in C templates

Obviously, "nfs_ok" is defined only for NFS protocols. Other XDR
protocols won't know "nfs_ok" from Adam.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
This commit is contained in:
Chuck Lever
2024-11-18 20:23:06 -05:00
parent 07decac0ac
commit 82c2a36179
@@ -13,7 +13,7 @@ static int {{ program }}_xdr_dec_{{ result }}(struct rpc_rqst *req,
if (!xdrgen_decode_{{ result }}(xdr, result))
return -EIO;
if (result->stat != nfs_ok)
if (result->stat)
return {{ program }}_stat_to_errno(result->stat);
{% endif %}
return 0;