diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-14 04:15:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-03-14 04:15:05 +0000 |
commit | 8efbe9929bbfc27724627c085b230dae68ac96a5 (patch) | |
tree | 4fda5dcccf071f4f289abbda0acbf81db9452bd0 /usr.bin/at/at.h | |
parent | 268eb0e45c9416696d8f09cd08fa697c6666fc60 (diff) |
This goes with the at.c change
Diffstat (limited to 'usr.bin/at/at.h')
-rw-r--r-- | usr.bin/at/at.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/at/at.h b/usr.bin/at/at.h index 80b8bd82257..9d20d4d4a8b 100644 --- a/usr.bin/at/at.h +++ b/usr.bin/at/at.h @@ -1,4 +1,4 @@ -/* $OpenBSD: at.h,v 1.8 2003/02/20 20:38:08 millert Exp $ */ +/* $OpenBSD: at.h,v 1.9 2003/03/14 04:15:04 millert Exp $ */ /* * at.h - header for at(1) @@ -37,6 +37,8 @@ enum { ATQ, ATRM, AT, BATCH, CAT }; /* what are we running as? */ struct atjob { time_t runtimer; time_t ctime; + uid_t uid; + mode_t mode; char queue; }; |