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~326^2~12 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=be337389bf0005998c5a5583ac1c61a189e64708;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)