diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2024-11-05 16:26:02 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2024-11-05 16:26:02 +0000 |
commit | 68430ebf0e88d68e961a11328e2c09ec273bf48f (patch) | |
tree | b8b7a9a615988eacaa155a39b3a831dece4f0324 /usr.bin/at/at.c | |
parent | dd573e1de294f0546c9d6025716b916f3a05ca6d (diff) |
fix an alignment error in the Queue column label of atq(1) introduced on
September 9th, 2001 when the Unix epoch exceeded one billion; another
column alignment will be needed once the Unix epoch exceeds ten billions,
but it will not happen until November 20th, 2286.
ok miod@, sthen@, and millert@
Diffstat (limited to 'usr.bin/at/at.c')
-rw-r--r-- | usr.bin/at/at.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/at/at.c b/usr.bin/at/at.c index a3efa9769ba..f07ad6a33c4 100644 --- a/usr.bin/at/at.c +++ b/usr.bin/at/at.c @@ -1,4 +1,4 @@ -/* $OpenBSD: at.c,v 1.84 2023/03/08 04:43:10 guenther Exp $ */ +/* $OpenBSD: at.c,v 1.85 2024/11/05 16:26:01 sobrado Exp $ */ /* * at.c : Put file into atrun queue @@ -580,7 +580,7 @@ list_jobs(int argc, char **argv, int count_only, int csort) if (!shortformat) (void)puts(" Rank Execution Date Owner " - "Job Queue"); + "Job Queue"); for (i = 0; i < numjobs; i++) { print_job(atjobs[i], i + 1, shortformat); |