aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--miscutils/crond.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/crond.c b/miscutils/crond.c
index 51b09ece0..ecb3a2f80 100644
--- a/miscutils/crond.c
+++ b/miscutils/crond.c
@@ -788,7 +788,7 @@ ForkJob(const char *user, CronLine *line, int mailFd,
788 xmove_fd(mailFd, mail_filename ? 1 : 0); 788 xmove_fd(mailFd, mail_filename ? 1 : 0);
789 dup2(1, 2); 789 dup2(1, 2);
790 } 790 }
791 execl(prog, prog, cmd, arg, NULL); 791 execlp(prog, prog, cmd, arg, NULL);
792 crondlog(ERR20 "can't exec, user %s cmd %s %s %s", user, prog, cmd, arg); 792 crondlog(ERR20 "can't exec, user %s cmd %s %s %s", user, prog, cmd, arg);
793 if (mail_filename) { 793 if (mail_filename) {
794 fdprintf(1, "Exec failed: %s -c %s\n", prog, arg); 794 fdprintf(1, "Exec failed: %s -c %s\n", prog, arg);