diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-09-28 19:39:36 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-09-28 19:39:36 +0000 |
commit | ee93d8634afd2646f11cc630b87ae4c692360f74 (patch) | |
tree | 1c63c9259da91376c50fc97785302e944a64c850 /tests/test_protocols.c | |
parent | e62367934a1bba4e83113847e33102c05aad9b4e (diff) |
also switch to nss_status_t for test code
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1223 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'tests/test_protocols.c')
-rw-r--r-- | tests/test_protocols.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_protocols.c b/tests/test_protocols.c index 4fdc92e..9208eb2 100644 --- a/tests/test_protocols.c +++ b/tests/test_protocols.c @@ -31,7 +31,7 @@ #include "nss/prototypes.h" -static char *nssstatus(enum nss_status retv) +static char *nssstatus(nss_status_t retv) { switch(retv) { @@ -63,7 +63,7 @@ int main(int argc,char *argv[]) { struct protoent protoresult; char buffer[1024]; - enum nss_status res; + nss_status_t res; int errnocp; /* test getprotobyname() */ |