From: Ralph Boehme Date: Tue, 17 Jun 2025 14:26:46 +0000 (+0200) Subject: smbd: fix include order in smbXsrv_open.c X-Git-Tag: tdb-1.4.14~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06d13da577ae95eada1e63eaa203a1a9394bd4d4;p=thirdparty%2Fsamba.git smbd: fix include order in smbXsrv_open.c Signed-off-by: Ralph Boehme Reviewed-by: Stefan Metzmacher --- diff --git a/source3/smbd/smbXsrv_open.c b/source3/smbd/smbXsrv_open.c index c939bbd39c3..00d1fd6109a 100644 --- a/source3/smbd/smbXsrv_open.c +++ b/source3/smbd/smbXsrv_open.c @@ -18,12 +18,12 @@ along with this program. If not, see . */ -#include "smbXsrv_open.h" #include "includes.h" #include "system/filesys.h" #include "lib/util/server_id.h" #include "smbd/smbd.h" #include "smbd/globals.h" +#include "smbXsrv_open.h" #include "dbwrap/dbwrap.h" #include "dbwrap/dbwrap_rbt.h" #include "dbwrap/dbwrap_open.h"