diff options
author | Rob Landley <rob@landley.net> | 2014-01-16 09:26:50 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-01-16 09:26:50 -0600 |
commit | 59d85e2bb065a3bdc27868acb7a65f89d872c7fa (patch) | |
tree | 25db9183f6e142b7c5f12b69e9728aaa98f5bbd6 /toys/pending/groupadd.c | |
parent | 2ded83376cb822198e83048335417a0e870f2240 (diff) | |
download | toybox-59d85e2bb065a3bdc27868acb7a65f89d872c7fa.tar.gz |
Rename xmsprintf() to just xmprintf().
Partly because there's no supplied target string ala sprintf, and partly
because I can never remember what order the m and s go in.
Diffstat (limited to 'toys/pending/groupadd.c')
-rw-r--r-- | toys/pending/groupadd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toys/pending/groupadd.c b/toys/pending/groupadd.c index 8ff539eb..c19e1eef 100644 --- a/toys/pending/groupadd.c +++ b/toys/pending/groupadd.c @@ -59,10 +59,10 @@ static void new_group() } } - entry = xmsprintf("%s:%s:%d:", *toys.optargs, "x", TT.gid); + entry = xmprintf("%s:%s:%d:", *toys.optargs, "x", TT.gid); update_password(GROUP_PATH, *toys.optargs, entry); free(entry); - entry = xmsprintf("%s:%s::", *toys.optargs, "!"); + entry = xmprintf("%s:%s::", *toys.optargs, "!"); update_password(SECURE_GROUP_PATH, *toys.optargs, entry); free(entry); } @@ -82,7 +82,7 @@ void groupadd_main(void) xgetpwnam(*toys.optargs); if (!(grp = getgrnam(toys.optargs[1]))) error_exit("group '%s' does not exist", toys.optargs[1]); - if (!grp->gr_mem) entry = xmsprintf("%s", *toys.optargs); + if (!grp->gr_mem) entry = xmprintf("%s", *toys.optargs); else { int i; |