summaryrefslogtreecommitdiffstats
path: root/pw/pw_group.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-07-11 23:17:13 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-07-11 23:17:13 +0000
commita715bff28feb804ba62f2da0e310734d377e6f78 (patch)
tree89636f4f29e8847248b3e8d2bc84a2d5a6977335 /pw/pw_group.c
parent37cf831c25d3fbcc63a8548fc4ed7ead82562c5b (diff)
downloadpw-darwin-a715bff28feb804ba62f2da0e310734d377e6f78.tar.gz
pw-darwin-a715bff28feb804ba62f2da0e310734d377e6f78.zip
Remove now unused variable
Diffstat (limited to 'pw/pw_group.c')
-rw-r--r--pw/pw_group.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/pw/pw_group.c b/pw/pw_group.c
index 156ab3d..b0db3cf 100644
--- a/pw/pw_group.c
+++ b/pw/pw_group.c
@@ -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;
}