diff options
author | 2003-03-14 04:15:04 +0000 | |
---|---|---|
committer | 2003-03-14 04:15:04 +0000 | |
commit | e5352c89c09e2578e2f07a2aced62243e41dcc37 (patch) | |
tree | e5162d97ea03da1822cdbc5e152c0eea172b27e8 | |
parent | tweak; millert ok (diff) | |
download | wireguard-openbsd-e5352c89c09e2578e2f07a2aced62243e41dcc37.tar.xz wireguard-openbsd-e5352c89c09e2578e2f07a2aced62243e41dcc37.zip |
This goes with the at.c change
-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; }; |