From: Shachar Sharon Date: Tue, 28 May 2024 09:36:14 +0000 (+0300) Subject: vfs_ceph: use consistent code style when setting errno X-Git-Tag: tdb-1.4.11~284 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d743185e0c6e848f1aaf0395ea8824ac5381086;p=thirdparty%2Fsamba.git vfs_ceph: use consistent code style when setting errno 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 Reviewed-by: Andrew Bartlett Reviewed-by: David Disseldorp Reviewed-by: Ralph Boehme Reviewed-by: Guenther Deschner Reviewed-by: Anoop C S Autobuild-User(master): Anoop C S Autobuild-Date(master): Thu Jun 27 06:35:19 UTC 2024 on atb-devel-224 --- diff --git a/source3/modules/vfs_ceph.c b/source3/modules/vfs_ceph.c index 67ffe311a56..04ab6f7c052 100644 --- a/source3/modules/vfs_ceph.c +++ b/source3/modules/vfs_ceph.c @@ -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; }