mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
auth: Add missing newlines to logging messages
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
f6babaa9b6
commit
def62de106
@ -1882,7 +1882,7 @@ _PUBLIC_ NTSTATUS netlogon_creds_session_encrypt(
|
|||||||
|
|
||||||
if (data.data == NULL || data.length == 0) {
|
if (data.data == NULL || data.length == 0) {
|
||||||
DBG_ERR("Nothing to encrypt "
|
DBG_ERR("Nothing to encrypt "
|
||||||
"data.data == NULL or data.length == 0");
|
"data.data == NULL or data.length == 0\n");
|
||||||
return NT_STATUS_INVALID_PARAMETER;
|
return NT_STATUS_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
@ -1516,7 +1516,7 @@ _PUBLIC_ int cli_credentials_get_aes256_key(struct cli_credentials *cred,
|
|||||||
&key);
|
&key);
|
||||||
if (krb5_ret != 0) {
|
if (krb5_ret != 0) {
|
||||||
DEBUG(1,("cli_credentials_get_aes256_key: "
|
DEBUG(1,("cli_credentials_get_aes256_key: "
|
||||||
"generation of a aes256-cts-hmac-sha1-96 key failed: %s",
|
"generation of a aes256-cts-hmac-sha1-96 key failed: %s\n",
|
||||||
smb_get_krb5_error_message(smb_krb5_context->krb5_context,
|
smb_get_krb5_error_message(smb_krb5_context->krb5_context,
|
||||||
krb5_ret, mem_ctx)));
|
krb5_ret, mem_ctx)));
|
||||||
return EINVAL;
|
return EINVAL;
|
||||||
|
Loading…
Reference in New Issue
Block a user