From: Shachar Sharon Date: Tue, 20 Aug 2024 09:06:40 +0000 (+0300) Subject: vfs_ceph_new: add missing newline in debug-logging X-Git-Tag: tdb-1.4.13~1305 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cbba4008a7fb9e6e91d0568f25ac481b60fda96f;p=thirdparty%2Fsamba.git 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 Reviewed-by: John Mulligan Reviewed-by: Anoop C S Autobuild-User(master): Anoop C S Autobuild-Date(master): Wed Aug 21 14:18:07 UTC 2024 on atb-devel-224 --- 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);