1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

r23651: Always, always, always compile before commit...

Guenther
(This used to be commit accb40446a)
This commit is contained in:
Günther Deschner 2007-06-29 09:58:11 +00:00 committed by Gerald (Jerry) Carter
parent 3b1956f9d2
commit 110e420196
2 changed files with 2 additions and 2 deletions

View File

@ -550,7 +550,7 @@ int ads_keytab_create_default(ADS_STRUCT *ads)
ret = smb_krb5_open_keytab(context, NULL, True, &keytab);
if (ret) {
DEBUG(1,("ads_keytab_create_default: smb_krb5_open_keytab failed (%s)\n", error_message(ret)));
goto out;
goto done;
}
ret = krb5_kt_start_seq_get(context, keytab, &cursor);

View File

@ -954,7 +954,7 @@ get_key_from_keytab(krb5_context context,
ret = smb_krb5_open_keytab(context, NULL, False, &keytab);
if (ret) {
DEBUG(1,("get_key_from_keytab: smb_krb5_open_keytab failed (%s)\n", error_message(ret)));
goto out;
return ret;
}
if ( DEBUGLEVEL >= 10 ) {