diff options
Diffstat (limited to 'runit')
-rw-r--r-- | runit/chpst.c | 6 | ||||
-rw-r--r-- | runit/svlogd.c | 2 |
2 files changed, 4 insertions, 4 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 | ||
276 | int chpst_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 276 | int 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 | } |
diff --git a/runit/svlogd.c b/runit/svlogd.c index c9e5346d1..a250058a1 100644 --- a/runit/svlogd.c +++ b/runit/svlogd.c | |||
@@ -274,7 +274,7 @@ static void warnx(const char *m0, const char *m1) | |||
274 | } | 274 | } |
275 | static void pause_nomem(void) | 275 | static void pause_nomem(void) |
276 | { | 276 | { |
277 | bb_error_msg(PAUSE"out of memory"); | 277 | bb_simple_error_msg(PAUSE"out of memory"); |
278 | sleep(3); | 278 | sleep(3); |
279 | } | 279 | } |
280 | static void pause1cannot(const char *m0) | 280 | static void pause1cannot(const char *m0) |