nss-pam-ldapd commit: r1140 - in nss-pam-ldapd: common compat nslcd nss pam
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
nss-pam-ldapd commit: r1140 - in nss-pam-ldapd: common compat nslcd nss pam
- From: "Commits of the nss-pam-ldapd project." <nss-pam-ldapd-commits [at] lists.arthurdejong.org>
- To: nss-pam-ldapd-commits [at] lists.arthurdejong.org
- Reply-to: nss-pam-ldapd-users [at] lists.arthurdejong.org
- Subject: nss-pam-ldapd commit: r1140 - in nss-pam-ldapd: common compat nslcd nss pam
- Date: Mon, 14 Jun 2010 23:05:58 +0200 (CEST)
Author: arthur
Date: Mon Jun 14 23:05:52 2010
New Revision: 1140
URL: http://arthurdejong.org/viewvc/nss-pam-ldapd?view=rev&revision=1140
Log:
make include guard names consistent throughout the source and avoid conflicts
with system headers
Modified:
nss-pam-ldapd/common/dict.h
nss-pam-ldapd/common/expr.h
nss-pam-ldapd/common/nslcd-prot.h
nss-pam-ldapd/common/set.h
nss-pam-ldapd/common/tio.h
nss-pam-ldapd/compat/attrs.h
nss-pam-ldapd/compat/daemon.h
nss-pam-ldapd/compat/ether.h
nss-pam-ldapd/compat/getopt_long.h
nss-pam-ldapd/compat/getpeercred.h
nss-pam-ldapd/compat/ldap_compat.h
nss-pam-ldapd/compat/pam_compat.h
nss-pam-ldapd/nslcd/attmap.h
nss-pam-ldapd/nslcd/cfg.h
nss-pam-ldapd/nslcd/common.h
nss-pam-ldapd/nslcd/log.h
nss-pam-ldapd/nslcd/myldap.h
nss-pam-ldapd/nss/common.h
nss-pam-ldapd/nss/prototypes.h
nss-pam-ldapd/pam/common.h
Modified: nss-pam-ldapd/common/dict.h
==============================================================================
--- nss-pam-ldapd/common/dict.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/common/dict.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -20,8 +20,8 @@
02110-1301 USA
*/
-#ifndef _DICT_H
-#define _DICT_H
+#ifndef COMMON__DICT_H
+#define COMMON__DICT_H
#include "compat/attrs.h"
@@ -64,4 +64,4 @@
const char **dict_keys(DICT *dict)
MUST_USE;
-#endif /* _DICT_H */
+#endif /* COMMON__DICT_H */
Modified: nss-pam-ldapd/common/expr.h
==============================================================================
--- nss-pam-ldapd/common/expr.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/common/expr.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -20,8 +20,8 @@
02110-1301 USA
*/
-#ifndef _EXPR_H
-#define _EXPR_H 1
+#ifndef COMMON__EXPR_H
+#define COMMON__EXPR_H 1
#include "compat/attrs.h"
#include "common/set.h"
@@ -38,4 +38,4 @@
is allocated, otherwise the passed set is added to. */
SET *expr_vars(const char *expr,SET *set);
-#endif /* not _EXPR_H */
+#endif /* not _COMMON__ */
Modified: nss-pam-ldapd/common/nslcd-prot.h
==============================================================================
--- nss-pam-ldapd/common/nslcd-prot.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/common/nslcd-prot.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -20,8 +20,8 @@
02110-1301 USA
*/
-#ifndef _NSLCD_PROT_H
-#define _NSLCD_PROT_H 1
+#ifndef COMMON__NSLCD_PROT_H
+#define COMMON__NSLCD_PROT_H 1
#include "tio.h"
@@ -355,4 +355,4 @@
if (tmpint32!=(int32_t)NSLCD_RESULT_BEGIN) \
{ ERROR_OUT_NOSUCCESS(fp) }
-#endif /* not _NSLCD_PROT_H */
+#endif /* not COMMON__NSLCD_PROT_H */
Modified: nss-pam-ldapd/common/set.h
==============================================================================
--- nss-pam-ldapd/common/set.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/common/set.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -20,8 +20,8 @@
02110-1301 USA
*/
-#ifndef _SET_H
-#define _SET_H
+#ifndef COMMON__SET_H
+#define COMMON__SET_H
#include "compat/attrs.h"
@@ -56,4 +56,4 @@
const char **set_tolist(SET *set)
MUST_USE;
-#endif /* _SET_H */
+#endif /* COMMON__SET_H */
Modified: nss-pam-ldapd/common/tio.h
==============================================================================
--- nss-pam-ldapd/common/tio.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/common/tio.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -33,8 +33,8 @@
*/
-#ifndef _TIO_H
-#define _TIO_H
+#ifndef COMMON__TIO_H
+#define COMMON__TIO_H
#include <sys/time.h>
#include <sys/types.h>
@@ -78,4 +78,4 @@
were full). */
int tio_reset(TFILE *fp);
-#endif /* _TIO_H */
+#endif /* COMMON__TIO_H */
Modified: nss-pam-ldapd/compat/attrs.h
==============================================================================
--- nss-pam-ldapd/compat/attrs.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/compat/attrs.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -19,8 +19,8 @@
02110-1301 USA
*/
-#ifndef _COMPAT_ATTRS_H
-#define _COMPAT_ATTRS_H 1
+#ifndef COMPAT__ATTRS_H
+#define COMPAT__ATTRS_H 1
/* macro for testing the version of GCC */
#define GCC_VERSION(major,minor) \
@@ -88,4 +88,4 @@
#endif /* not __STDC__ */
#endif /* not __STRING */
-#endif /* not _COMPAT_ATTRS_H */
+#endif /* not COMPAT__ATTRS_H */
Modified: nss-pam-ldapd/compat/daemon.h
==============================================================================
--- nss-pam-ldapd/compat/daemon.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/compat/daemon.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -19,8 +19,8 @@
02110-1301 USA
*/
-#ifndef _DAEMON_H
-#define _DAEMON_H 1
+#ifndef COMPAT__DAEMON_H
+#define COMPAT__DAEMON_H 1
#include <unistd.h>
@@ -28,4 +28,4 @@
strdout and stderr and redirect them to /dev/null */
int daemon(int nochdir,int noclose);
-#endif /* not _DAEMON_H */
+#endif /* not COMPAT__DAEMON_H */
Modified: nss-pam-ldapd/compat/ether.h
==============================================================================
--- nss-pam-ldapd/compat/ether.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/compat/ether.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -19,8 +19,8 @@
02110-1301 USA
*/
-#ifndef _COMPAT_ETHER_H
-#define _COMPAT_ETHER_H 1
+#ifndef COMPAT__ETHER_H
+#define COMPAT__ETHER_H 1
#include <sys/types.h>
#include <sys/socket.h>
@@ -45,5 +45,5 @@
struct ether_addr *ether_aton_r(const char *asc,struct ether_addr *addr);
#endif /* not HAVE_ETHER_ATON_R */
-#endif /* not _COMPAT_ETHER_H */
+#endif /* not COMPAT__ETHER_H */
Modified: nss-pam-ldapd/compat/getopt_long.h
==============================================================================
--- nss-pam-ldapd/compat/getopt_long.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/compat/getopt_long.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -19,8 +19,8 @@
02110-1301 USA
*/
-#ifndef _GETOPT_LONG_H
-#define _GETOPT_LONG_H 1
+#ifndef COMPAT__GETOPT_LONG_H
+#define COMPAT__GETOPT_LONG_H 1
#ifndef HAVE_GETOPT_LONG
@@ -47,4 +47,4 @@
#endif /* not HAVE_GETOPT_LONG */
-#endif /* _GETOPT_LONG_H */
+#endif /* COMPAT__GETOPT_LONG_H */
Modified: nss-pam-ldapd/compat/getpeercred.h
==============================================================================
--- nss-pam-ldapd/compat/getpeercred.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/compat/getpeercred.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -21,8 +21,8 @@
02110-1301 USA
*/
-#ifndef _COMPAT_GETPEERCRED_H
-#define _COMPAT_GETPEERCRED_H 1
+#ifndef COMPAT__GETPEERCRED_H
+#define COMPAT__GETPEERCRED_H 1
/* This function tries to determine the (effective) user id, group id
and process id of the other end of the specified socket.
@@ -32,4 +32,4 @@
is set appropriately. */
int getpeercred(int sock,uid_t *uid,gid_t *gid,pid_t *pid);
-#endif /* not _COMPAT_GETPEERCRED_H */
+#endif /* not COMPAT__GETPEERCRED_H */
Modified: nss-pam-ldapd/compat/ldap_compat.h
==============================================================================
--- nss-pam-ldapd/compat/ldap_compat.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/compat/ldap_compat.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -19,8 +19,8 @@
02110-1301 USA
*/
-#ifndef _COMPAT_LDAP_COMPAT_H
-#define _COMPAT_LDAP_COMPAT_H 1
+#ifndef COMPAT__LDAP_COMPAT_H
+#define COMPAT__LDAP_COMPAT_H 1
#include <lber.h>
#include <ldap.h>
@@ -58,4 +58,4 @@
#endif /* not HAVE_LDAP_PASSWD_S */
-#endif /* _COMPAT_LDAP_COMPAT_H */
+#endif /* COMPAT__LDAP_COMPAT_H */
Modified: nss-pam-ldapd/compat/pam_compat.h
==============================================================================
--- nss-pam-ldapd/compat/pam_compat.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/compat/pam_compat.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -19,8 +19,8 @@
02110-1301 USA
*/
-#ifndef _COMPAT_PAM_COMPAT_H
-#define _COMPAT_PAM_COMPAT_H 1
+#ifndef COMPAT__PAM_COMPAT_H
+#define COMPAT__PAM_COMPAT_H 1
#ifdef HAVE_SECURITY_PAM_APPL_H
#include <security/pam_appl.h>
Modified: nss-pam-ldapd/nslcd/attmap.h
==============================================================================
--- nss-pam-ldapd/nslcd/attmap.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/nslcd/attmap.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -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 @@
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 */
Modified: nss-pam-ldapd/nslcd/cfg.h
==============================================================================
--- nss-pam-ldapd/nslcd/cfg.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/nslcd/cfg.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -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 @@
if an error occurs. */
void cfg_init(const char *fname);
-#endif /* _CFG_H */
+#endif /* NSLCD__CFG_H */
Modified: nss-pam-ldapd/nslcd/common.h
==============================================================================
--- nss-pam-ldapd/nslcd/common.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/nslcd/common.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -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 @@
return 0; \
}
-#endif /* not _SERVER_COMMON_H */
+#endif /* not NSLCD__COMMON_H */
Modified: nss-pam-ldapd/nslcd/log.h
==============================================================================
--- nss-pam-ldapd/nslcd/log.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/nslcd/log.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -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 @@
MUST_USE;
-#endif /* not _LOG_H */
+#endif /* not NSLCD__LOG_H */
Modified: nss-pam-ldapd/nslcd/myldap.h
==============================================================================
--- nss-pam-ldapd/nslcd/myldap.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/nslcd/myldap.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -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 @@
MYLDAP_SESSION *session,
const char *userdn,const char *oldpassword,const char *newpasswd);
-#endif /* not _MYLDAP_H */
+#endif /* not NSLCD__MYLDAP_H */
Modified: nss-pam-ldapd/nss/common.h
==============================================================================
--- nss-pam-ldapd/nss/common.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/nss/common.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -20,8 +20,8 @@
02110-1301 USA
*/
-#ifndef _NSS_COMMON_H
-#define _NSS_COMMON_H 1
+#ifndef NSS__COMMON_H
+#define NSS__COMMON_H 1
#include <stdio.h>
#include <nss.h>
@@ -181,4 +181,4 @@
} \
return NSS_STATUS_SUCCESS;
-#endif /* not _NSS_COMMON_H */
+#endif /* not NSS__COMMON_H */
Modified: nss-pam-ldapd/nss/prototypes.h
==============================================================================
--- nss-pam-ldapd/nss/prototypes.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/nss/prototypes.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -20,8 +20,8 @@
02110-1301 USA
*/
-#ifndef _NSS_EXPORTS_H
-#define _NSS_EXPORTS_H 1
+#ifndef NSS__PROTOTYPES_H
+#define NSS__PROTOTYPES_H 1
#include <nss.h>
#ifdef HAVE_ALIASES_H
@@ -172,4 +172,4 @@
enum nss_status _nss_ldap_getspent_r(struct spwd *result,char *buffer,size_t
buflen,int *errnop);
enum nss_status _nss_ldap_endspent(void);
-#endif /* not NSS_EXPORTS */
+#endif /* not NSS__PROTOTYPES_H */
Modified: nss-pam-ldapd/pam/common.h
==============================================================================
--- nss-pam-ldapd/pam/common.h Mon Jun 14 22:24:35 2010 (r1139)
+++ nss-pam-ldapd/pam/common.h Mon Jun 14 23:05:52 2010 (r1140)
@@ -19,8 +19,8 @@
02110-1301 USA
*/
-#ifndef _PAM_COMMON_H
-#define _PAM_COMMON_H 1
+#ifndef PAM__COMMON_H
+#define PAM__COMMON_H 1
#include <stdio.h>
@@ -97,4 +97,4 @@
READ_TYPE(fp,tmpint32,int32_t); \
i=nslcd2pam_rc(tmpint32);
-#endif /* not _PAM_COMMON_H */
+#endif /* not PAM__COMMON_H */
--
To unsubscribe send an email to
nss-pam-ldapd-commits-unsubscribe@lists.arthurdejong.org or see
http://lists.arthurdejong.org/nss-pam-ldapd-commits
- nss-pam-ldapd commit: r1140 - in nss-pam-ldapd: common compat nslcd nss pam,
Commits of the nss-pam-ldapd project.