diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2013-05-11 20:13:49 +0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2013-05-12 22:56:30 +0400 |
commit | 625cdd78d119d5848ac3c47d129bdf5f23f64120 (patch) | |
tree | 9e0bcaa658dcce36a04ae93be99eae2ea9db0a86 /net | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) | |
download | linux-625cdd78d119d5848ac3c47d129bdf5f23f64120.tar.xz |
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')
-rw-r--r-- | net/sunrpc/auth_gss/svcauth_gss.c | 2 |
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; |