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

r7731: change debug level to not spam the build-farm smbd log

metze
This commit is contained in:
Stefan Metzmacher 2005-06-18 20:32:21 +00:00 committed by Gerald (Jerry) Carter
parent 5122b9f608
commit 3a1ed83fd0
2 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ void cldapd_netlogon_request(struct cldap_socket *cldap,
return;
failed:
DEBUG(0,("cldap netlogon query failed domain=%s host=%s version=%d - %s\n",
DEBUG(2,("cldap netlogon query failed domain=%s host=%s version=%d - %s\n",
domain, host, version, nt_errstr(status)));
talloc_free(tmp_ctx);
cldap_empty_reply(cldap, message_id, src_address, src_port);

View File

@ -191,7 +191,7 @@ NTSTATUS sess_decrypt_blob(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob, const DAT
sess_crypt_blob(&out, blob, session_key, False);
if (IVAL(out.data, 4) != 1) {
DEBUG(0,("Unexpected revision number %d in session crypted secret (BLOB)\n",
DEBUG(2,("Unexpected revision number %d in session crypted secret (BLOB)\n",
IVAL(out.data, 4)));
return NT_STATUS_UNKNOWN_REVISION;
}