summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorSamuel Cabrero <scabrero@samba.org>2019-09-12 19:05:57 +0200
committerAndreas Schneider <asn@cryptomilk.org>2019-10-18 16:07:35 +0000
commit8bc228900e8cbc271543add56a2fc98002548a55 (patch)
tree8e5c52c0432b3f830e606e3bdb69254a8840d879 /source3/smbd
parent9a02c31deb1a295a5cf403aba378057dfcd44268 (diff)
downloadsamba-8bc228900e8cbc271543add56a2fc98002548a55.tar.gz
s3:smbd: Add header inclusion guards in globals.h
Signed-off-by: Samuel Cabrero <scabrero@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/globals.h5
1 files changed, 5 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
*/
+#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_ */