(acquire_initiator_cred): use kret instead of ret where appropriate

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12976 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-10-07 00:37:04 +00:00
parent d4baa1906c
commit 7c51fd6e95
2 changed files with 2 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ static OM_uint32 acquire_initiator_cred
if (kret)
goto end;
kret = krb5_get_init_creds_opt_alloc(gssapi_krb5_context, &opt);
if (ret)
if (kret)
goto end;
kret = krb5_get_init_creds_keytab(gssapi_krb5_context, &cred,
handle->principal, keytab, 0, NULL, opt);

View File

@@ -118,7 +118,7 @@ static OM_uint32 acquire_initiator_cred
if (kret)
goto end;
kret = krb5_get_init_creds_opt_alloc(gssapi_krb5_context, &opt);
if (ret)
if (kret)
goto end;
kret = krb5_get_init_creds_keytab(gssapi_krb5_context, &cred,
handle->principal, keytab, 0, NULL, opt);