]> granicus.if.org Git - cronie/commitdiff
The jobs in RH_CROND_DIR weren't syntactically checked.
authorMarcela Maslanova <marca@dhcp-lab-135.englab.brq.redhat.com>
Tue, 2 Oct 2007 10:41:51 +0000 (12:41 +0200)
committerMarcela Maslanova <marca@dhcp-lab-135.englab.brq.redhat.com>
Tue, 2 Oct 2007 10:41:51 +0000 (12:41 +0200)
Also SYSCRON wasn't checked. The problem is reported into log.

src/user.c

index 2105850f9ad986cd12f6a3c63a1c3f0b5839de7b..16121ba39efbb616e2d98ae0d855776c77f4a421 100644 (file)
@@ -28,6 +28,13 @@ static char rcsid[] = "$Id: user.c,v 1.5 2004/01/23 18:56:43 vixie Exp $";
 
 #include "cron.h"
 
+static const char *FileName;
+
+static void
+log_error(const char *msg) {
+        syslog(LOG_ERR,"CRON: error in (%s) problem is (%s)",FileName,msg);
+}
+
 void
 free_user(user *u) {
        entry *e, *ne;
@@ -101,7 +108,8 @@ load_user(int crontab_fd, struct passwd     *pw, const char *uname, const char *fnam
                        u = NULL;
                        goto done;
                case FALSE:
-                       e = load_entry(file, NULL, pw, envp);
+                       FileName = tabname;
+                       e = load_entry(file, log_error, pw, envp);
                        if (e) {
                                e->next = u->crontab;
                                u->crontab = e;