mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s3:lib: 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
8ea7b8a0af
commit
c7d71dd125
@ -2707,7 +2707,7 @@ int ad_fset(struct vfs_handle_struct *handle,
|
|||||||
ad_getentryoff(ad, ADEID_RFORK),
|
ad_getentryoff(ad, ADEID_RFORK),
|
||||||
0);
|
0);
|
||||||
if (len != ad_getentryoff(ad, ADEID_RFORK)) {
|
if (len != ad_getentryoff(ad, ADEID_RFORK)) {
|
||||||
DBG_ERR("short write on %s: %zd", fsp_str_dbg(fsp), len);
|
DBG_ERR("short write on %s: %zd\n", fsp_str_dbg(fsp), len);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
rc = 0;
|
rc = 0;
|
||||||
|
@ -455,7 +455,7 @@ static int command_set_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t
|
|||||||
DBG_NOTICE("Running command "
|
DBG_NOTICE("Running command "
|
||||||
"%s %s %d %d "
|
"%s %s %d %d "
|
||||||
"%u %llu %llu "
|
"%u %llu %llu "
|
||||||
"%llu %llu %llu ",
|
"%llu %llu %llu\n",
|
||||||
set_quota_command,
|
set_quota_command,
|
||||||
path,
|
path,
|
||||||
qtype,
|
qtype,
|
||||||
|
@ -53,7 +53,7 @@ struct ea_list *read_ea_list_entry(TALLOC_CTX *ctx, const char *pdata, size_t da
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (!pull_ascii_talloc(ctx, &eal->ea.name, pdata + 4, &converted_size)) {
|
if (!pull_ascii_talloc(ctx, &eal->ea.name, pdata + 4, &converted_size)) {
|
||||||
DEBUG(0,("read_ea_list_entry: pull_ascii_talloc failed: %s",
|
DEBUG(0,("read_ea_list_entry: pull_ascii_talloc failed: %s\n",
|
||||||
strerror(errno)));
|
strerror(errno)));
|
||||||
}
|
}
|
||||||
if (!eal->ea.name) {
|
if (!eal->ea.name) {
|
||||||
|
Loading…
Reference in New Issue
Block a user