diff options
author | Simo Sorce <simo@redhat.com> | 2017-01-04 14:40:04 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2017-01-13 15:50:06 -0500 |
commit | c333d574e900984ef7f5b8822dbbe5801afe9cf3 (patch) | |
tree | b4178d1cd1517d98381b493d3038a4a3105fec88 | |
parent | 103f72370bc25e9ca152120e7917bc14a81e47a9 (diff) | |
download | gss-proxy-c333d574e900984ef7f5b8822dbbe5801afe9cf3.tar.gz gss-proxy-c333d574e900984ef7f5b8822dbbe5801afe9cf3.tar.xz gss-proxy-c333d574e900984ef7f5b8822dbbe5801afe9cf3.zip |
Make local call static
Signed-off-by: Simo Sorce <simo@redhat.com>
-rw-r--r-- | proxy/src/gp_creds.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proxy/src/gp_creds.c b/proxy/src/gp_creds.c index 05ec659..8af5a9d 100644 --- a/proxy/src/gp_creds.c +++ b/proxy/src/gp_creds.c @@ -410,10 +410,10 @@ done: return ret; } -uint32_t gp_check_cred(uint32_t *min, - gss_cred_id_t in_cred, - gssx_name *desired_name, - gss_cred_usage_t cred_usage) +static uint32_t gp_check_cred(uint32_t *min, + gss_cred_id_t in_cred, + gssx_name *desired_name, + gss_cred_usage_t cred_usage) { uint32_t ret_maj = 0; uint32_t ret_min = 0; |