summaryrefslogtreecommitdiffstats
path: root/lib/libutil
diff options
context:
space:
mode:
authorscf <scf@FreeBSD.org>2009-12-12 00:11:40 +0000
committerscf <scf@FreeBSD.org>2009-12-12 00:11:40 +0000
commit02d6bc865e1f58465f2167b67513dd7d30489736 (patch)
tree798a8cac20f7201278e898313bcc68361dbbb764 /lib/libutil
parentcba699cae02e5f97f80583c9416f813482b92b7d (diff)
downloadFreeBSD-src-02d6bc865e1f58465f2167b67513dd7d30489736.zip
FreeBSD-src-02d6bc865e1f58465f2167b67513dd7d30489736.tar.gz
Remove a dead store.
MFC after: 5 days
Diffstat (limited to 'lib/libutil')
-rw-r--r--lib/libutil/gr_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/gr_util.c b/lib/libutil/gr_util.c
index 77e0653..633f435 100644
--- a/lib/libutil/gr_util.c
+++ b/lib/libutil/gr_util.c
@@ -117,8 +117,8 @@ gr_make(const struct group *gr)
/* Create the group line and fill it. */
if ((line = malloc(line_size)) == NULL)
return (NULL);
- line_size = snprintf(line, line_size, group_line_format, gr->gr_name,
- gr->gr_passwd, (uintmax_t)gr->gr_gid);
+ snprintf(line, line_size, group_line_format, gr->gr_name, gr->gr_passwd,
+ (uintmax_t)gr->gr_gid);
if (gr->gr_mem != NULL)
for (ndx = 0; gr->gr_mem[ndx] != NULL; ndx++) {
strcat(line, gr->gr_mem[ndx]);
OpenPOWER on IntegriCloud