(initgroups_dyn_function): Renamed from initgroups_function, adopted prototype for change from 2000-07-23. (initgroups): Follow type change.

This commit is contained in:
Andreas Jaeger 2000-07-24 16:48:34 +00:00
parent ad0c66a0c0
commit 72eb780897

View file

@ -27,9 +27,9 @@
#include <nsswitch.h> #include <nsswitch.h>
/* Type of the lookup function. */ /* Type of the lookup function. */
typedef enum nss_status (*initgroups_function) (const char *, gid_t, typedef enum nss_status (*initgroups_dyn_function) (const char *, gid_t,
long int *, long int *, long int *, long int *,
gid_t *, long int, int *); gid_t **, long int, int *);
/* Prototype for the setgrent functions we use here. */ /* Prototype for the setgrent functions we use here. */
typedef enum nss_status (*set_function) (void); typedef enum nss_status (*set_function) (void);
@ -152,7 +152,7 @@ initgroups (user, group)
#else #else
service_user *nip = NULL; service_user *nip = NULL;
initgroups_function fct; initgroups_dyn_function fct;
enum nss_status status = NSS_STATUS_UNAVAIL; enum nss_status status = NSS_STATUS_UNAVAIL;
int no_more; int no_more;
/* Start is one, because we have the first group as parameter. */ /* Start is one, because we have the first group as parameter. */