From 9896c7155ce897b84fd0e59459402b0e820a03e8 Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Sun, 28 Aug 2011 19:25:20 +1000 Subject: [PATCH] nfs_set_auth() is a void and does not return anything --- lib/libnfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1