diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2006-11-10 16:36:05 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2006-11-10 16:36:05 +0100 |
commit | 6b6068ef4d5332628ef59b5350eef2c91d1d598f (patch) | |
tree | 885184a8afff569347ba7f4af5c99ed8f0905c70 /nss | |
parent | 0828d65bf3e39c23a7fad25b2eda4a641b265907 (diff) |
rename nss/exports.h to nss/prototypes.h
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/libnss_ldapd@82 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nss')
-rw-r--r-- | nss/Makefile.am | 2 | ||||
-rw-r--r-- | nss/aliases.c | 2 | ||||
-rw-r--r-- | nss/ethers.c | 2 | ||||
-rw-r--r-- | nss/group.c | 2 | ||||
-rw-r--r-- | nss/hosts.c | 2 | ||||
-rw-r--r-- | nss/passwd.c | 2 | ||||
-rw-r--r-- | nss/prototypes.h (renamed from nss/exports.h) | 2 | ||||
-rw-r--r-- | nss/shadow.c | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/nss/Makefile.am b/nss/Makefile.am index 9f44f12..6f671f9 100644 --- a/nss/Makefile.am +++ b/nss/Makefile.am @@ -20,7 +20,7 @@ noinst_LIBRARIES = libnss.a -libnss_a_SOURCES = common.c common.h exports.h ../nslcd-client.h \ +libnss_a_SOURCES = common.c common.h prototypes.h ../nslcd-client.h \ ../nslcd.h ../nslcd-common.h \ aliases.c ethers.c group.c hosts.c passwd.c \ shadow.c diff --git a/nss/aliases.c b/nss/aliases.c index dfc05d3..2674d9c 100644 --- a/nss/aliases.c +++ b/nss/aliases.c @@ -26,7 +26,7 @@ #include <nss.h> #include <errno.h> -#include "exports.h" +#include "prototypes.h" #include "nslcd-client.h" #include "common.h" diff --git a/nss/ethers.c b/nss/ethers.c index 2ce6450..6a475cf 100644 --- a/nss/ethers.c +++ b/nss/ethers.c @@ -26,7 +26,7 @@ #include <nss.h> #include <errno.h> -#include "exports.h" +#include "prototypes.h" #include "nslcd-client.h" #include "common.h" diff --git a/nss/group.c b/nss/group.c index 01e4913..b25ae81 100644 --- a/nss/group.c +++ b/nss/group.c @@ -26,7 +26,7 @@ #include <nss.h> #include <errno.h> -#include "exports.h" +#include "prototypes.h" #include "nslcd-client.h" #include "common.h" diff --git a/nss/hosts.c b/nss/hosts.c index d0b2c86..062763f 100644 --- a/nss/hosts.c +++ b/nss/hosts.c @@ -26,7 +26,7 @@ #include <nss.h> #include <errno.h> -#include "exports.h" +#include "prototypes.h" #include "nslcd-client.h" #include "common.h" diff --git a/nss/passwd.c b/nss/passwd.c index c3db753..4862ad5 100644 --- a/nss/passwd.c +++ b/nss/passwd.c @@ -26,7 +26,7 @@ #include <nss.h> #include <errno.h> -#include "exports.h" +#include "prototypes.h" #include "nslcd-client.h" #include "common.h" diff --git a/nss/exports.h b/nss/prototypes.h index a860da5..4ac5eba 100644 --- a/nss/exports.h +++ b/nss/prototypes.h @@ -1,5 +1,5 @@ /* - exports.h - all functions exported by the NSS library + prototypes.h - all functions exported by the NSS library Copyright (C) 2006 West Consulting Copyright (C) 2006 Arthur de Jong diff --git a/nss/shadow.c b/nss/shadow.c index 70bdaff..62f55b3 100644 --- a/nss/shadow.c +++ b/nss/shadow.c @@ -26,7 +26,7 @@ #include <nss.h> #include <errno.h> -#include "exports.h" +#include "prototypes.h" #include "nslcd-client.h" #include "common.h" |