The branch, master has been updated via 11239f0 credentials: Simplify cli_credentials_get_server_gss_creds() from 7277590 smbldap: don't try start tls on ldaps:// connections
https://git.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 11239f0759601a9db22dfe1e99d3de7f2348a1e5 Author: Andreas Schneider <a...@samba.org> Date: Tue Dec 13 11:38:13 2016 +0100 credentials: Simplify cli_credentials_get_server_gss_creds() Signed-off-by: Andreas Schneider <a...@samba.org> Reviewed-by: Volker Lendecke <v...@samba.org> Autobuild-User(master): Volker Lendecke <v...@samba.org> Autobuild-Date(master): Wed Jan 3 14:37:12 CET 2018 on sn-devel-144 ----------------------------------------------------------------------- Summary of changes: auth/credentials/credentials_krb5.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) Changeset truncated at 500 lines: diff --git a/auth/credentials/credentials_krb5.c b/auth/credentials/credentials_krb5.c index b88497d..585203a 100644 --- a/auth/credentials/credentials_krb5.c +++ b/auth/credentials/credentials_krb5.c @@ -1151,16 +1151,17 @@ _PUBLIC_ int cli_credentials_get_server_gss_creds(struct cli_credentials *cred, } if (ktc->password_based || obtained < CRED_SPECIFIED) { - /* This creates a GSSAPI cred_id_t for match-by-key with only the keytab set */ - maj_stat = smb_gss_krb5_import_cred(&min_stat, smb_krb5_context->krb5_context, - NULL, NULL, ktc->keytab, - &gcc->creds); - } else { - /* This creates a GSSAPI cred_id_t with the principal and keytab set, matching by name */ - maj_stat = smb_gss_krb5_import_cred(&min_stat, smb_krb5_context->krb5_context, - NULL, princ, ktc->keytab, - &gcc->creds); + /* + * This creates a GSSAPI cred_id_t for match-by-key with only + * the keytab set + */ + princ = NULL; } + maj_stat = smb_gss_krb5_import_cred(&min_stat, + smb_krb5_context->krb5_context, + NULL, princ, + ktc->keytab, + &gcc->creds); if (maj_stat) { if (min_stat) { ret = min_stat; -- Samba Shared Repository