1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-16 20:23:50 +03:00

r1462: GENSEC Kerberos and SPENGO work:

- Spelling - it's SPNEGO, not SPENGO
 - SMB signing - Krb5 logins are now correctly signed
 - SPNEGO - Changes to always tell GENSEC about incoming packets, empty or not.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett
2004-07-12 09:11:13 +00:00
committed by Gerald (Jerry) Carter
parent 67ac960066
commit cea578d6f3
10 changed files with 177 additions and 110 deletions

View File

@@ -2836,6 +2836,7 @@ static struct cli_state *do_connect(const char *server, const char *share)
status = cli_session_setup(c, username, password, lp_workgroup());
if (NT_STATUS_IS_ERR(status)) {
d_printf("authenticated session setup failed: %s\n", nt_errstr(status));
/* if a password was not supplied then try again with a null username */
if (password[0] || !username[0] || use_kerberos) {
status = cli_session_setup(c, "", "", lp_workgroup());