aboutsummaryrefslogtreecommitdiff
path: root/runit/chpst.c
diff options
context:
space:
mode:
Diffstat (limited to 'runit/chpst.c')
-rw-r--r--runit/chpst.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/runit/chpst.c b/runit/chpst.c
index 5e77245f6..af777568f 100644
--- a/runit/chpst.c
+++ b/runit/chpst.c
@@ -270,7 +270,7 @@ static void limit(int what, long l)
270 else 270 else
271 r.rlim_cur = l; 271 r.rlim_cur = l;
272 if (setrlimit(what, &r) == -1) 272 if (setrlimit(what, &r) == -1)
273 bb_perror_msg_and_die("setrlimit"); 273 bb_simple_perror_msg_and_die("setrlimit");
274} 274}
275 275
276int chpst_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 276int chpst_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
@@ -467,12 +467,12 @@ int chpst_main(int argc UNUSED_PARAM, char **argv)
467 if (opt & OPT_n) { 467 if (opt & OPT_n) {
468 errno = 0; 468 errno = 0;
469 if (nice(xatoi(nicestr)) == -1) 469 if (nice(xatoi(nicestr)) == -1)
470 bb_perror_msg_and_die("nice"); 470 bb_simple_perror_msg_and_die("nice");
471 } 471 }
472 472
473 if (opt & OPT_u) { 473 if (opt & OPT_u) {
474 if (setgroups(1, &ugid.gid) == -1) 474 if (setgroups(1, &ugid.gid) == -1)
475 bb_perror_msg_and_die("setgroups"); 475 bb_simple_perror_msg_and_die("setgroups");
476 xsetgid(ugid.gid); 476 xsetgid(ugid.gid);
477 xsetuid(ugid.uid); 477 xsetuid(ugid.uid);
478 } 478 }