diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/crontab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/crontab.c b/miscutils/crontab.c index 67b10f684..044440435 100644 --- a/miscutils/crontab.c +++ b/miscutils/crontab.c @@ -118,9 +118,9 @@ int crontab_main(int argc UNUSED_PARAM, char **argv) argv += optind; if (sanitize_env_if_suid()) { /* Clears dangerous stuff, sets PATH */ - /* run by non-root? */ + /* Run by non-root */ if (opt_ler & (OPT_u|OPT_c)) - bb_error_msg_and_die("only root can use -c or -u"); + bb_error_msg_and_die(bb_msg_you_must_be_root); } if (opt_ler & OPT_u) { |