diff options
author | Michael Adam <obnox@samba.org> | 2011-05-30 23:42:02 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-31 01:44:27 +0200 |
commit | 7d40c88695173e93606546e895731f66b87381d2 (patch) | |
tree | 1439a59852d3d8073d213e9a76c279b7081a9922 | |
parent | b3cbcd0eda4fdb993acc63c8cb6923feea067a7d (diff) | |
download | samba-7d40c88695173e93606546e895731f66b87381d2.tar.gz samba-7d40c88695173e93606546e895731f66b87381d2.tar.bz2 samba-7d40c88695173e93606546e895731f66b87381d2.zip |
s3:passdb/proto.h: add _PASSDB_PROTO_H_ guard
-rw-r--r-- | source3/passdb/proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/passdb/proto.h b/source3/passdb/proto.h index 17882a99d8..8b95b72959 100644 --- a/source3/passdb/proto.h +++ b/source3/passdb/proto.h @@ -34,6 +34,8 @@ * along with this program; if not, see <http://www.gnu.org/licenses/>. */ +#ifndef _PASSDB_PROTO_H_ +#define _PASSDB_PROTO_H_ /* The following definitions come from passdb/account_pol.c */ @@ -336,3 +338,5 @@ NTSTATUS pdb_tdbsam_init(void); NTSTATUS create_builtin_users(const struct dom_sid *sid); NTSTATUS create_builtin_administrators(const struct dom_sid *sid); + +#endif /* _PASSDB_PROTO_H_ */ |