diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2008-01-27 10:14:31 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2008-01-27 10:14:31 +0000 |
commit | 132f701f415aedfefd3a54b3c6d8f7d697cd36c3 (patch) | |
tree | f9bb7d231160226a0eaa6bfa025499f7119e05b5 | |
parent | 0088367917bdcc423b44f279df4d83e2de932a23 (diff) |
correct #endif comment
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@570 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | nslcd/pagectrl.c | 4 | ||||
-rw-r--r-- | nslcd/pagectrl.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/nslcd/pagectrl.c b/nslcd/pagectrl.c index a40727f..b37c264 100644 --- a/nslcd/pagectrl.c +++ b/nslcd/pagectrl.c @@ -130,7 +130,7 @@ exit: ber_free (ber, 1); return (LDAP_ENCODING_ERROR); } -#endif /* HAVE_LDAP_CREATE_PAGE_CONTROL */ +#endif /* not HAVE_LDAP_CREATE_PAGE_CONTROL */ #ifndef HAVE_LDAP_PARSE_PAGE_CONTROL /*--- @@ -221,4 +221,4 @@ foundPageControl: return (LDAP_SUCCESS); } -#endif /* HAVE_LDAP_PARSE_PAGE_CONTROL */ +#endif /* not HAVE_LDAP_PARSE_PAGE_CONTROL */ diff --git a/nslcd/pagectrl.h b/nslcd/pagectrl.h index 8db853e..cd64b77 100644 --- a/nslcd/pagectrl.h +++ b/nslcd/pagectrl.h @@ -31,7 +31,7 @@ ldap_create_page_control( LDAP *ld, struct berval *cookiep, int iscritical, LDAPControl **ctrlp ); -#endif /* HAVE_LDAP_CREATE_PAGE_CONTROL */ +#endif /* not HAVE_LDAP_CREATE_PAGE_CONTROL */ #ifndef HAVE_LDAP_PARSE_PAGE_CONTROL int @@ -40,6 +40,6 @@ ldap_parse_page_control( LDAPControl **ctrls, unsigned long *list_countp, struct berval **cookiep ); -#endif /* HAVE_LDAP_PARSE_PAGE_CONTROL */ +#endif /* not HAVE_LDAP_PARSE_PAGE_CONTROL */ #endif /* _LDAP_NSS_LDAP_UTIL_H */ |