diff options
Diffstat (limited to 'usr.sbin/cron/atrun.c')
-rw-r--r-- | usr.sbin/cron/atrun.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/cron/atrun.c b/usr.sbin/cron/atrun.c index dff0ebf387e..c65a2235f3a 100644 --- a/usr.sbin/cron/atrun.c +++ b/usr.sbin/cron/atrun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atrun.c,v 1.53 2021/10/24 21:24:18 deraadt Exp $ */ +/* $OpenBSD: atrun.c,v 1.54 2022/12/28 21:30:16 jmc Exp $ */ /* * Copyright (c) 2002-2003 Todd C. Miller <millert@openbsd.org> @@ -187,7 +187,7 @@ atrun(at_db *db, double batch_maxload, time_t now) if (fstatat(dfd, atfile, &sb, AT_SYMLINK_NOFOLLOW) != 0) { TAILQ_REMOVE(&db->jobs, job, entries); free(job); - continue; /* disapeared from queue */ + continue; /* disappeared from queue */ } if (!S_ISREG(sb.st_mode)) { syslog(LOG_WARNING, "(CRON) NOT REGULAR (%s)", |