diff options
author | bapt <bapt@FreeBSD.org> | 2015-05-10 09:33:15 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-05-10 09:33:15 +0000 |
commit | 065d18b9ef1cb09413e225e4379f3c26ec215243 (patch) | |
tree | 9cafe083102931038e9a38005a5a3036dba8cd7a /usr.sbin | |
parent | 599ec55705413d440b32d892a5418638d4c6b207 (diff) | |
download | FreeBSD-src-065d18b9ef1cb09413e225e4379f3c26ec215243.zip FreeBSD-src-065d18b9ef1cb09413e225e4379f3c26ec215243.tar.gz |
Remove useless call to extendarray
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pw/pw_conf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.sbin/pw/pw_conf.c b/usr.sbin/pw/pw_conf.c index f17857b..209982c 100644 --- a/usr.sbin/pw/pw_conf.c +++ b/usr.sbin/pw/pw_conf.c @@ -438,7 +438,6 @@ write_userconfig(char const * file) config.default_group : ""); break; case _UC_EXTRAGROUPS: - extendarray(&config.groups, &config.numgroups, 200); for (j = 0; j < config.numgroups && config.groups[j] != NULL; j++) sbuf_printf(buf, "%s\"%s\"", j ? |