]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs_ceph: use consistent code style when setting errno
authorShachar Sharon <ssharon@redhat.com>
Tue, 28 May 2024 09:36:14 +0000 (12:36 +0300)
committerAnoop C S <anoopcs@samba.org>
Thu, 27 Jun 2024 06:35:19 +0000 (06:35 +0000)
When setting explicit value to 'errno' use same coding-style as used in
this entire module (spaces before and after assignment operator).

Signed-off-by: Shachar Sharon <ssharon@redhat.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
Autobuild-User(master): Anoop C S <anoopcs@samba.org>
Autobuild-Date(master): Thu Jun 27 06:35:19 UTC 2024 on atb-devel-224

source3/modules/vfs_ceph.c

index 67ffe311a56bb4c3a6c33bca482d0f1416d04185..04ab6f7c052a33b1ad12261bf4049fda0da15a72 100644 (file)
@@ -771,7 +771,7 @@ static ssize_t cephwrap_recvfile(struct vfs_handle_struct *handle,
         * We cannot support recvfile because libcephfs is in user space.
         */
        DBG_DEBUG("[CEPH] cephwrap_recvfile\n");
-       errno=ENOTSUP;
+       errno = ENOTSUP;
        return -1;
 }