From 3358239a57573bc25850da4e2868df5efd05fb0d Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 28 Sep 2011 12:05:54 +0200 Subject: [PATCH] smb_unix_ext.h: Protect against multiple inclusion. --- libcli/smb/smb_unix_ext.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libcli/smb/smb_unix_ext.h b/libcli/smb/smb_unix_ext.h index 9516d310ad..ff705aa144 100644 --- a/libcli/smb/smb_unix_ext.h +++ b/libcli/smb/smb_unix_ext.h @@ -21,6 +21,9 @@ along with this program. If not, see . */ +#ifndef __SMB_UNIX_EXT_H__ +#define __SMB_UNIX_EXT_H__ + /* UNIX CIFS Extensions - created by HP */ /* * UNIX CIFS Extensions have the range 0x200 - 0x2FF reserved. @@ -450,3 +453,4 @@ enum smb_whoami_flags { #define SMB_POSIX_UNLINK_FILE_TARGET 0 #define SMB_POSIX_UNLINK_DIRECTORY_TARGET 1 +#endif /* __SMB_UNIX_EXT_H__ */ -- 2.34.1