diff options
Diffstat (limited to 'nslcd/rpc.c')
-rw-r--r-- | nslcd/rpc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nslcd/rpc.c b/nslcd/rpc.c index 6ce4198..ea02e92 100644 --- a/nslcd/rpc.c +++ b/nslcd/rpc.c @@ -5,7 +5,7 @@ Copyright (C) 1997-2005 Luke Howard Copyright (C) 2006 West Consulting - Copyright (C) 2006 Arthur de Jong + Copyright (C) 2006, 2007 Arthur de Jong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -66,7 +66,7 @@ #define RPC_NUMBER result->r_number /* write a single rpc entry to the stream */ -static int write_rpcent(FILE *fp,struct rpcent *result) +static int write_rpcent(TFILE *fp,struct rpcent *result) { int32_t tmpint32,tmp2int32,tmp3int32; NSLCD_RPC; @@ -105,7 +105,7 @@ static enum nss_status _nss_ldap_parse_rpc (LDAPMessage * e, return NSS_STATUS_SUCCESS; } -int nslcd_rpc_byname(FILE *fp) +int nslcd_rpc_byname(TFILE *fp) { int32_t tmpint32; char name[256]; @@ -136,7 +136,7 @@ int nslcd_rpc_byname(FILE *fp) return 0; } -int nslcd_rpc_bynumber(FILE *fp) +int nslcd_rpc_bynumber(TFILE *fp) { int32_t tmpint32; int number; @@ -167,7 +167,7 @@ int nslcd_rpc_bynumber(FILE *fp) return 0; } -int nslcd_rpc_all(FILE *fp) +int nslcd_rpc_all(TFILE *fp) { int32_t tmpint32; static struct ent_context *rpc_context; |