From: Ronnie Sahlberg Date: Sun, 28 Aug 2011 09:25:20 +0000 (+1000) Subject: nfs_set_auth() is a void and does not return anything X-Git-Tag: upstream/1.9.6^2~332 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=9896c7155ce897b84fd0e59459402b0e820a03e8;p=deb_libnfs.git nfs_set_auth() is a void and does not return anything --- diff --git a/lib/libnfs.c b/lib/libnfs.c index edaeca4..5270923 100644 --- a/lib/libnfs.c +++ b/lib/libnfs.c @@ -107,7 +107,7 @@ static int nfs_lookup_path_async_internal(struct nfs_context *nfs, struct nfs_cb void nfs_set_auth(struct nfs_context *nfs, struct AUTH *auth) { - return rpc_set_auth(nfs->rpc, auth); + rpc_set_auth(nfs->rpc, auth); } int nfs_get_fd(struct nfs_context *nfs)