The branch, master has been updated via cbba4008a7f vfs_ceph_new: add missing newline in debug-logging from dd03cf8b4c8 libsmb: Remove cli_state->rap_error
https://git.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit cbba4008a7fb9e6e91d0568f25ac481b60fda96f Author: Shachar Sharon <ssha...@redhat.com> Date: Tue Aug 20 12:06:40 2024 +0300 vfs_ceph_new: add missing newline in debug-logging Commit d00f20f3 ("vfs_ceph_new: debug-log upon libcephfs low-level calls") introduced debug-logging before each call to libcephfs low-level APIs. Unfortunately, one of the logging messages missed the terminating newline ('\n') character. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15686 Signed-off-by: Shachar Sharon <ssha...@redhat.com> Reviewed-by: John Mulligan <jmulli...@samba.org> Reviewed-by: Anoop C S <anoo...@samba.org> Autobuild-User(master): Anoop C S <anoo...@samba.org> Autobuild-Date(master): Wed Aug 21 14:18:07 UTC 2024 on atb-devel-224 ----------------------------------------------------------------------- Summary of changes: source3/modules/vfs_ceph_new.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Changeset truncated at 500 lines: diff --git a/source3/modules/vfs_ceph_new.c b/source3/modules/vfs_ceph_new.c index 18506e68f07..cd98cb4e8d6 100644 --- a/source3/modules/vfs_ceph_new.c +++ b/source3/modules/vfs_ceph_new.c @@ -730,7 +730,7 @@ static int vfs_ceph_ll_lookup(const struct vfs_handle_struct *handle, struct UserPerm *uperm = NULL; int ret = -1; - DBG_DEBUG("[ceph] ceph_ll_lookup: parent-ino=%" PRIu64 " name=%s", + DBG_DEBUG("[ceph] ceph_ll_lookup: parent-ino=%" PRIu64 " name=%s\n", parent->ino, name); uperm = vfs_ceph_userperm_new(handle); -- Samba Shared Repository