Remove now unused variable

This commit is contained in:
Baptiste Daroussin 2015-07-11 23:17:13 +00:00
parent 10e6a51cf3
commit 9c56d9c5e4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285413

View File

@ -162,7 +162,6 @@ pw_group(int mode, char *name, long id, struct cargs * args)
int rc;
struct carg *arg;
struct group *grp = NULL;
char **members = NULL;
struct userconf *cnf = conf.userconf;
static struct group fakegroup =
@ -286,8 +285,6 @@ pw_group(int mode, char *name, long id, struct cargs * args)
pw_log(cnf, mode, W_GROUP, "%s(%u)", grp->gr_name, grp->gr_gid);
free(members);
return EXIT_SUCCESS;
}