From: Volker Lendecke Date: Fri, 9 Feb 2024 11:47:48 +0000 (+0100) Subject: smbd: Save 3 lines X-Git-Tag: tdb-1.4.11~1228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51c950c16297ce45aeec85dff53af04f7f3b620f;p=thirdparty%2Fsamba.git smbd: Save 3 lines Just cosmetic Signed-off-by: Volker Lendecke Reviewed-by: Andrew Bartlett --- diff --git a/source3/smbd/smbXsrv_open.c b/source3/smbd/smbXsrv_open.c index efabb73dbd0..f2a6fc27784 100644 --- a/source3/smbd/smbXsrv_open.c +++ b/source3/smbd/smbXsrv_open.c @@ -74,10 +74,7 @@ NTSTATUS smbXsrv_open_global_init(void) DBWRAP_FLAG_NONE); TALLOC_FREE(global_path); if (db_ctx == NULL) { - NTSTATUS status; - - status = map_nt_error_from_unix_common(errno); - + NTSTATUS status = map_nt_error_from_unix_common(errno); return status; }