aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/auth_gss/svcauth_gss.c
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2013-05-11 19:13:49 +0300
committerJ. Bruce Fields <bfields@redhat.com>2013-05-12 14:56:30 -0400
commit625cdd78d119d5848ac3c47d129bdf5f23f64120 (patch)
tree9e0bcaa658dcce36a04ae93be99eae2ea9db0a86 /net/sunrpc/auth_gss/svcauth_gss.c
parentLinux 3.10-rc1 (diff)
downloadlinux-dev-625cdd78d119d5848ac3c47d129bdf5f23f64120.tar.xz
linux-dev-625cdd78d119d5848ac3c47d129bdf5f23f64120.zip
svcauth_gss: fix error code in use_gss_proxy()
This should return zero on success and -EBUSY on error so the type needs to be int instead of bool. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net/sunrpc/auth_gss/svcauth_gss.c')
-rw-r--r--net/sunrpc/auth_gss/svcauth_gss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c
index 871c73c92165..2c6a1ece54bf 100644
--- a/net/sunrpc/auth_gss/svcauth_gss.c
+++ b/net/sunrpc/auth_gss/svcauth_gss.c
@@ -1287,7 +1287,7 @@ static bool use_gss_proxy(struct net *net)
#ifdef CONFIG_PROC_FS
-static bool set_gss_proxy(struct net *net, int type)
+static int set_gss_proxy(struct net *net, int type)
{
struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
int ret = 0;