Commit c5f5e9c5 authored by Trond Myklebust's avatar Trond Myklebust

SUNRPC: Add missing static declaration to _gss_mech_get_by_name

Ditto for _gss_mech_get_by_pseudoflavor.
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 322b2b90
...@@ -140,7 +140,7 @@ gss_mech_get(struct gss_api_mech *gm) ...@@ -140,7 +140,7 @@ gss_mech_get(struct gss_api_mech *gm)
EXPORT_SYMBOL_GPL(gss_mech_get); EXPORT_SYMBOL_GPL(gss_mech_get);
struct gss_api_mech * static struct gss_api_mech *
_gss_mech_get_by_name(const char *name) _gss_mech_get_by_name(const char *name)
{ {
struct gss_api_mech *pos, *gm = NULL; struct gss_api_mech *pos, *gm = NULL;
...@@ -205,7 +205,7 @@ mech_supports_pseudoflavor(struct gss_api_mech *gm, u32 pseudoflavor) ...@@ -205,7 +205,7 @@ mech_supports_pseudoflavor(struct gss_api_mech *gm, u32 pseudoflavor)
return 0; return 0;
} }
struct gss_api_mech *_gss_mech_get_by_pseudoflavor(u32 pseudoflavor) static struct gss_api_mech *_gss_mech_get_by_pseudoflavor(u32 pseudoflavor)
{ {
struct gss_api_mech *gm = NULL, *pos; struct gss_api_mech *gm = NULL, *pos;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment