diff options
author | Michael Adam <obnox@samba.org> | 2011-05-31 00:34:17 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-31 01:44:27 +0200 |
commit | eb5db22771d1c700f881f879b98ae08c69d2203b (patch) | |
tree | 90826961c55f2e31cdc9ccfd6f3f43d7a956b1d7 /source3/libads | |
parent | 6e9c055ce28d66be76957dc0bde87655190bc622 (diff) | |
download | samba-eb5db22771d1c700f881f879b98ae08c69d2203b.tar.gz samba-eb5db22771d1c700f881f879b98ae08c69d2203b.tar.xz samba-eb5db22771d1c700f881f879b98ae08c69d2203b.zip |
s3:libads/ads_proto.h: add _LIBADS_ADS_PROTO_H_ guard
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ads_proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/libads/ads_proto.h b/source3/libads/ads_proto.h index 12cbb68e77..324fa2a9cc 100644 --- a/source3/libads/ads_proto.h +++ b/source3/libads/ads_proto.h @@ -29,6 +29,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef _LIBADS_ADS_PROTO_H_ +#define _LIBADS_ADS_PROTO_H_ + /* The following definitions come from libads/ads_struct.c */ char *ads_build_path(const char *realm, const char *sep, const char *field, int reverse); @@ -183,3 +186,5 @@ ADS_STATUS ads_setup_sasl_wrapping(ADS_STRUCT *ads, /* The following definitions come from libads/util.c */ ADS_STATUS ads_change_trust_account_password(ADS_STRUCT *ads, char *host_principal); + +#endif /* _LIBADS_ADS_PROTO_H_ */ |