From: Samuel Cabrero Date: Thu, 12 Sep 2019 17:05:57 +0000 (+0200) Subject: s3:smbd: Add header inclusion guards in globals.h X-Git-Tag: talloc-2.3.1~323 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8bc228900e8cbc271543add56a2fc98002548a55;p=thirdparty%2Fsamba.git s3:smbd: Add header inclusion guards in globals.h Signed-off-by: Samuel Cabrero Reviewed-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- diff --git a/source3/smbd/globals.h b/source3/smbd/globals.h index 1e4cfc1e466..d7d584eb274 100644 --- a/source3/smbd/globals.h +++ b/source3/smbd/globals.h @@ -18,6 +18,9 @@ along with this program. If not, see . */ +#ifndef _SOURCE3_SMBD_GLOBALS_H_ +#define _SOURCE3_SMBD_GLOBALS_H_ + #include "system/select.h" #include "librpc/gen_ndr/smbXsrv.h" #include "smbprofile.h" @@ -901,3 +904,5 @@ struct smbd_server_connection { extern struct smbXsrv_client *global_smbXsrv_client; void smbd_init_globals(void); + +#endif /* _SOURCE3_SMBD_GLOBALS_H_ */