The prototypes of fgetsx() and fputsx() are already defined in
prototypes.h. Remove the declaration of these functions.
This commit is contained in:
parent
bbb9470661
commit
8d9c39789b
@ -25,6 +25,9 @@
|
|||||||
loginprompt for the internal variable.
|
loginprompt for the internal variable.
|
||||||
* src/chsh.c: loginsh is a global variable, use newshell for the
|
* src/chsh.c: loginsh is a global variable, use newshell for the
|
||||||
update_shell()'s parameter.
|
update_shell()'s parameter.
|
||||||
|
* lib/gshadow.c: The prototypes of fgetsx() and fputsx() are
|
||||||
|
already defined in prototypes.h. Remove the declaration of these
|
||||||
|
functions.
|
||||||
|
|
||||||
2008-01-01 Nicolas François <nicolas.francois@centraliens.net>
|
2008-01-01 Nicolas François <nicolas.francois@centraliens.net>
|
||||||
|
|
||||||
|
@ -45,9 +45,6 @@ static char **admins = NULL;
|
|||||||
static size_t nadmins = 0;
|
static size_t nadmins = 0;
|
||||||
static struct sgrp sgroup;
|
static struct sgrp sgroup;
|
||||||
|
|
||||||
extern char *fgetsx ();
|
|
||||||
extern int fputsx ();
|
|
||||||
|
|
||||||
#define FIELDS 4
|
#define FIELDS 4
|
||||||
|
|
||||||
#ifdef USE_NIS
|
#ifdef USE_NIS
|
||||||
@ -92,7 +89,7 @@ static int bind_nis (void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static char **list (char *s, char **list[], size_t * nlist)
|
static char **build_list (char *s, char **list[], size_t * nlist)
|
||||||
{
|
{
|
||||||
char **ptr = *list;
|
char **ptr = *list;
|
||||||
size_t nelem = *nlist, size;
|
size_t nelem = *nlist, size;
|
||||||
@ -184,8 +181,8 @@ struct sgrp *sgetsgent (const char *string)
|
|||||||
free (members);
|
free (members);
|
||||||
members = NULL;
|
members = NULL;
|
||||||
}
|
}
|
||||||
sgroup.sg_adm = list (fields[2], &admins, &nadmins);
|
sgroup.sg_adm = build_list (fields[2], &admins, &nadmins);
|
||||||
sgroup.sg_mem = list (fields[3], &members, &nmembers);
|
sgroup.sg_mem = build_list (fields[3], &members, &nmembers);
|
||||||
|
|
||||||
return &sgroup;
|
return &sgroup;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user