From c2887f060954bd0e77bc6f3ac8fedec38e26c168 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 31 May 2011 13:19:52 +0200 Subject: s3: add _LIB_IDMAP_CACHE_H_ guard to lib/idmap_cache.h --- source3/lib/idmap_cache.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/lib') diff --git a/source3/lib/idmap_cache.h b/source3/lib/idmap_cache.h index c3e44c2887..1a62dba64f 100644 --- a/source3/lib/idmap_cache.h +++ b/source3/lib/idmap_cache.h @@ -18,6 +18,9 @@ * along with this program. If not, see . */ +#ifndef _LIB_IDMAP_CACHE_H_ +#define _LIB_IDMAP_CACHE_H_ + /* The following definitions come from lib/idmap_cache.c */ bool idmap_cache_find_sid2uid(const struct dom_sid *sid, uid_t *puid, @@ -32,3 +35,5 @@ void idmap_cache_set_sid2gid(const struct dom_sid *sid, gid_t gid); bool idmap_cache_del_uid(uid_t uid); bool idmap_cache_del_gid(gid_t gid); bool idmap_cache_del_sid(const struct dom_sid *sid); + +#endif /* _LIB_IDMAP_CACHE_H_ */ -- cgit