]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs_ceph_new: add missing newline in debug-logging
authorShachar Sharon <ssharon@redhat.com>
Tue, 20 Aug 2024 09:06:40 +0000 (12:06 +0300)
committerAnoop C S <anoopcs@samba.org>
Wed, 21 Aug 2024 14:18:07 +0000 (14:18 +0000)
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 <ssharon@redhat.com>
Reviewed-by: John Mulligan <jmulligan@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
Autobuild-User(master): Anoop C S <anoopcs@samba.org>
Autobuild-Date(master): Wed Aug 21 14:18:07 UTC 2024 on atb-devel-224

source3/modules/vfs_ceph_new.c

index 18506e68f070d0fe83cbd8d5f030b45caae36fd9..cd98cb4e8d64d85c97666d1d0e83a7b2a939ddf9 100644 (file)
@@ -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);