diff options
Diffstat (limited to 'nslcd')
-rw-r--r-- | nslcd/attmap.h | 6 | ||||
-rw-r--r-- | nslcd/cfg.h | 6 | ||||
-rw-r--r-- | nslcd/common.h | 6 | ||||
-rw-r--r-- | nslcd/log.h | 6 | ||||
-rw-r--r-- | nslcd/myldap.h | 6 |
5 files changed, 15 insertions, 15 deletions
diff --git a/nslcd/attmap.h b/nslcd/attmap.h index 480f290..dcfd0a4 100644 --- a/nslcd/attmap.h +++ b/nslcd/attmap.h @@ -20,8 +20,8 @@ 02110-1301 USA */ -#ifndef _ATTMAP_H -#define _ATTMAP_H 1 +#ifndef NSLCD__ATTMAP_H +#define NSLCD__ATTMAP_H 1 #include "cfg.h" #include "myldap.h" @@ -95,4 +95,4 @@ const char *attmap_get_value(MYLDAP_ENTRY *entry,const char *attr,char *buffer,s can either be an attribute or an attribute expression. */ SET *attmap_add_attributes(SET *set,const char *attr); -#endif /* not _ATTMAP_H */ +#endif /* not NSLCD__ATTMAP_H */ diff --git a/nslcd/cfg.h b/nslcd/cfg.h index f32a500..8b30c14 100644 --- a/nslcd/cfg.h +++ b/nslcd/cfg.h @@ -23,8 +23,8 @@ 02110-1301 USA */ -#ifndef _CFG_H -#define _CFG_H +#ifndef NSLCD__CFG_H +#define NSLCD__CFG_H #include <unistd.h> #include <sys/types.h> @@ -149,4 +149,4 @@ extern struct ldap_config *nslcd_cfg; if an error occurs. */ void cfg_init(const char *fname); -#endif /* _CFG_H */ +#endif /* NSLCD__CFG_H */ diff --git a/nslcd/common.h b/nslcd/common.h index fafa25a..1b2aa1c 100644 --- a/nslcd/common.h +++ b/nslcd/common.h @@ -21,8 +21,8 @@ 02110-1301 USA */ -#ifndef _SERVER_COMMON_H -#define _SERVER_COMMON_H 1 +#ifndef NSLCD__COMMON_H +#define NSLCD__COMMON_H 1 #include <errno.h> @@ -195,4 +195,4 @@ int nslcd_pam_pwmod(TFILE *fp,MYLDAP_SESSION *session); return 0; \ } -#endif /* not _SERVER_COMMON_H */ +#endif /* not NSLCD__COMMON_H */ diff --git a/nslcd/log.h b/nslcd/log.h index 43215de..3fa3d23 100644 --- a/nslcd/log.h +++ b/nslcd/log.h @@ -20,8 +20,8 @@ */ -#ifndef _LOG_H -#define _LOG_H 1 +#ifndef NSLCD__LOG_H +#define NSLCD__LOG_H 1 #include <syslog.h> @@ -65,4 +65,4 @@ int log_getloglevel(const char *lvl) MUST_USE; -#endif /* not _LOG_H */ +#endif /* not NSLCD__LOG_H */ diff --git a/nslcd/myldap.h b/nslcd/myldap.h index 2ad90d9..0a3bd0b 100644 --- a/nslcd/myldap.h +++ b/nslcd/myldap.h @@ -32,8 +32,8 @@ get attribute values (with myldap_get_values()). */ -#ifndef _MYLDAP_H -#define _MYLDAP_H +#ifndef NSLCD__MYLDAP_H +#define NSLCD__MYLDAP_H /* for size_t */ #include <stdlib.h> @@ -139,4 +139,4 @@ int myldap_passwd( MYLDAP_SESSION *session, const char *userdn,const char *oldpassword,const char *newpasswd); -#endif /* not _MYLDAP_H */ +#endif /* not NSLCD__MYLDAP_H */ |