diff options
author | Jeremy Allison <jra@samba.org> | 2010-03-24 12:20:03 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-03-24 12:20:03 -0700 |
commit | c2d1b01103d63f52c773c83eec52633b7f2032cc (patch) | |
tree | ecf8c1a603d21def642c37c5877fb1d3d81bb7fe /source4/libcli | |
parent | eb8e18476c198705a19d375e2f949c6c6df73612 (diff) | |
download | samba-c2d1b01103d63f52c773c83eec52633b7f2032cc.tar.gz samba-c2d1b01103d63f52c773c83eec52633b7f2032cc.tar.xz samba-c2d1b01103d63f52c773c83eec52633b7f2032cc.zip |
Missing include guard in source4/libcli/security/security.h
Jeremy.
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/security/security.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/libcli/security/security.h b/source4/libcli/security/security.h index 2870c4122b0..e3fdb0c7948 100644 --- a/source4/libcli/security/security.h +++ b/source4/libcli/security/security.h @@ -17,6 +17,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef _LIBCLI_SECURITY_SECURITY_H_ +#define _LIBCLI_SECURITY_SECURITY_H_ + #include "librpc/gen_ndr/security.h" enum security_user_level { @@ -43,3 +46,5 @@ struct object_tree { #include "libcli/security/proto.h" #include "libcli/security/security_descriptor.h" #include "libcli/security/sddl.h" + +#endif |