Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/groupmod.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ grp_update(void)
sgrp.sg_namp = xstrdup (grp.gr_name);
sgrp.sg_passwd = xstrdup (grp.gr_passwd);
sgrp.sg_adm = ∅
sgrp.sg_mem = dup_list (grp.gr_mem);
sgrp.sg_mem = grp.gr_mem;
Comment thread
alejandro-colomar marked this conversation as resolved.
Comment thread
alejandro-colomar marked this conversation as resolved.
new_sgent (&sgrp);
osgrp = &sgrp; /* entry needs to be committed */
}
Expand Down