mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s3:utils: Fix debug message formatting
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
ae68493941
commit
4d6118e441
@ -6500,8 +6500,8 @@ static NTSTATUS rpc_trustdom_get_pdc(struct net_context *c,
|
||||
return NT_STATUS_OK;
|
||||
}
|
||||
|
||||
DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller\
|
||||
for domain %s\n", domain_name));
|
||||
DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller "
|
||||
"for domain %s\n", domain_name));
|
||||
|
||||
/* Try netr_GetDcName */
|
||||
|
||||
@ -6524,8 +6524,8 @@ static NTSTATUS rpc_trustdom_get_pdc(struct net_context *c,
|
||||
return status;
|
||||
}
|
||||
|
||||
DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller\
|
||||
for domain %s\n", domain_name));
|
||||
DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller "
|
||||
"for domain %s\n", domain_name));
|
||||
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
return status;
|
||||
|
@ -593,8 +593,8 @@ static bool smb_download_file(const char *base, const char *name,
|
||||
if (opt.blocksize > max_block_size) {
|
||||
if (opt.blocksize != SMB_DEFAULT_BLOCKSIZE) {
|
||||
fprintf(stderr,
|
||||
"Warning: Overriding block size to %d \
|
||||
due to limit-rate", max_block_size);
|
||||
"Warning: Overriding block size to %d "
|
||||
"due to limit-rate", max_block_size);
|
||||
}
|
||||
opt.blocksize = max_block_size;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user