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) else r.rlim_cur = l; if (setrlimit(what, &r) == -1) - bb_perror_msg_and_die("setrlimit"); + bb_simple_perror_msg_and_die("setrlimit"); } int chpst_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; @@ -467,12 +467,12 @@ int chpst_main(int argc UNUSED_PARAM, char **argv) if (opt & OPT_n) { errno = 0; if (nice(xatoi(nicestr)) == -1) - bb_perror_msg_and_die("nice"); + bb_simple_perror_msg_and_die("nice"); } if (opt & OPT_u) { if (setgroups(1, &ugid.gid) == -1) - bb_perror_msg_and_die("setgroups"); + bb_simple_perror_msg_and_die("setgroups"); xsetgid(ugid.gid); xsetuid(ugid.uid); } 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) } static void pause_nomem(void) { - bb_error_msg(PAUSE"out of memory"); + bb_simple_error_msg(PAUSE"out of memory"); sleep(3); } static void pause1cannot(const char *m0) |