1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00

r14700: Fix spelling, and change these informational messages to debug level 5.

Andrew Bartlett
(This used to be commit 8f96f524bfde99667410ec98087831b9c14c66e5)
This commit is contained in:
Andrew Bartlett 2006-03-25 00:50:26 +00:00 committed by Gerald (Jerry) Carter
parent 637c450a51
commit 3fdc3cf0c2

View File

@ -441,11 +441,11 @@ static NTSTATUS gensec_gssapi_update(struct gensec_security *gensec_security,
gensec_gssapi_state->sasl_state = STAGE_DONE;
if (gensec_have_feature(gensec_security, GENSEC_FEATURE_SEAL)) {
DEBUG(3, ("GSSAPI Connection will be cryptographicly sealed\n"));
DEBUG(5, ("GSSAPI Connection will be cryptographicly sealed\n"));
} else if (gensec_have_feature(gensec_security, GENSEC_FEATURE_SIGN)) {
DEBUG(3, ("GSSAPI Connection will be cryptographicly signed\n"));
DEBUG(5, ("GSSAPI Connection will be cryptographicly signed\n"));
} else {
DEBUG(3, ("GSSAPI Connection will have no cryptographicly protection\n"));
DEBUG(5, ("GSSAPI Connection will have no cryptographic protection\n"));
}
return NT_STATUS_OK;
@ -678,11 +678,11 @@ static NTSTATUS gensec_gssapi_update(struct gensec_security *gensec_security,
/* quirk: This changes the value that gensec_have_feature returns, to be that after SASL negotiation */
gensec_gssapi_state->sasl_state = STAGE_DONE;
if (gensec_have_feature(gensec_security, GENSEC_FEATURE_SEAL)) {
DEBUG(3, ("SASL/GSSAPI Connection from client will be cryptographicly sealed\n"));
DEBUG(5, ("SASL/GSSAPI Connection from client will be cryptographicly sealed\n"));
} else if (gensec_have_feature(gensec_security, GENSEC_FEATURE_SIGN)) {
DEBUG(3, ("SASL/GSSAPI Connection from client will be cryptographicly signed\n"));
DEBUG(5, ("SASL/GSSAPI Connection from client will be cryptographicly signed\n"));
} else {
DEBUG(3, ("SASL/GSSAPI Connection from client will have no cryptographicly protection\n"));
DEBUG(5, ("SASL/GSSAPI Connection from client will have no cryptographic protection\n"));
}
*out = data_blob(NULL, 0);