1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +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:
Joseph Sutton 2023-08-07 16:35:35 +12:00 committed by Andrew Bartlett
parent 8ea7b8a0af
commit c7d71dd125
3 changed files with 3 additions and 3 deletions

View File

@ -2707,7 +2707,7 @@ int ad_fset(struct vfs_handle_struct *handle,
ad_getentryoff(ad, ADEID_RFORK),
0);
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;
}
rc = 0;

View File

@ -455,7 +455,7 @@ static int command_set_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t
DBG_NOTICE("Running command "
"%s %s %d %d "
"%u %llu %llu "
"%llu %llu %llu ",
"%llu %llu %llu\n",
set_quota_command,
path,
qtype,

View File

@ -53,7 +53,7 @@ struct ea_list *read_ea_list_entry(TALLOC_CTX *ctx, const char *pdata, size_t da
return NULL;
}
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)));
}
if (!eal->ea.name) {