diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-03-25 00:50:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:59:10 -0500 |
commit | 3fdc3cf0c224fd4ce923bb0df7e8f175356cecf2 (patch) | |
tree | ee2a710c6e29ed138fae5e16b843b83417d5fd65 | |
parent | 637c450a5174ca76419718312fe7d64317e48eb0 (diff) | |
download | samba-3fdc3cf0c224fd4ce923bb0df7e8f175356cecf2.tar.gz samba-3fdc3cf0c224fd4ce923bb0df7e8f175356cecf2.tar.bz2 samba-3fdc3cf0c224fd4ce923bb0df7e8f175356cecf2.zip |
r14700: Fix spelling, and change these informational messages to debug level 5.
Andrew Bartlett
(This used to be commit 8f96f524bfde99667410ec98087831b9c14c66e5)
-rw-r--r-- | source4/auth/gensec/gensec_gssapi.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source4/auth/gensec/gensec_gssapi.c b/source4/auth/gensec/gensec_gssapi.c index c08b96083c..8f487571f3 100644 --- a/source4/auth/gensec/gensec_gssapi.c +++ b/source4/auth/gensec/gensec_gssapi.c @@ -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); |