From fe53310bc2e7636f1dd16001684d0c5d936cd292 Mon Sep 17 00:00:00 2001 From: basney Date: Thu, 24 Sep 2009 19:34:45 +0000 Subject: [PATCH] declare ssh_gssapi_krb5_updatecreds() before reference --- openssh/gss-serv-krb5.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openssh/gss-serv-krb5.c b/openssh/gss-serv-krb5.c index a439393..dbf866c 100644 --- a/openssh/gss-serv-krb5.c +++ b/openssh/gss-serv-krb5.c @@ -61,6 +61,8 @@ static int ssh_gssapi_krb5_init(); static int ssh_gssapi_krb5_userok(ssh_gssapi_client *client, char *name); static int ssh_gssapi_krb5_localname(ssh_gssapi_client *client, char **user); static void ssh_gssapi_krb5_storecreds(ssh_gssapi_client *client); +static int ssh_gssapi_krb5_updatecreds(ssh_gssapi_ccache *store, + ssh_gssapi_client *client); ssh_gssapi_mech gssapi_kerberos_mech = { "toWM5Slw5Ew8Mqkay+al2g==", @@ -243,7 +245,7 @@ ssh_gssapi_krb5_storecreds(ssh_gssapi_client *client) return; } -int +static int ssh_gssapi_krb5_updatecreds(ssh_gssapi_ccache *store, ssh_gssapi_client *client) { -- 2.45.1