From: Thibault Godouet Date: Fri, 2 Mar 2001 17:50:34 +0000 (+0000) Subject: the user for whom the job is run is now logged X-Git-Tag: ver2_9_4~389 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18b2ba8f1d4097a1d24249a515937e01d9a2a58f;p=thirdparty%2Ffcron.git the user for whom the job is run is now logged --- diff --git a/job.c b/job.c index 3131053..59816d9 100644 --- a/job.c +++ b/job.c @@ -22,7 +22,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: job.c,v 1.35 2001-02-14 13:53:08 thib Exp $ */ + /* $Id: job.c,v 1.36 2001-03-02 17:50:34 thib Exp $ */ #include "fcron.h" @@ -256,7 +256,8 @@ run_job(struct exe *exeent) exeent->e_pid = pid; line->cl_file->cf_running += 1; if ( ! is_nolog(line->cl_option) ) - explain("Job %s started (pid %d)", line->cl_shell, pid); + explain("Job %s started for user %s (pid %d)", line->cl_shell, + line->cl_file->cf_user, pid); }