summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-03-26 00:39:35 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-03-26 00:39:35 +0000
commitdf23bc15881c2f6ccee842c56c01bb8857b1d6eb (patch)
tree394f92b43f07f0d80c930ed054a135282e0f66ee
parent082e875778c51eba9dd109113e8ffdfa89170f98 (diff)
sync to rwhod.h
-rw-r--r--usr.sbin/rwhod/rwhod.814
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/rwhod/rwhod.8 b/usr.sbin/rwhod/rwhod.8
index 7af259f7791..d9ad22cb166 100644
--- a/usr.sbin/rwhod/rwhod.8
+++ b/usr.sbin/rwhod/rwhod.8
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)rwhod.8 8.2 (Berkeley) 12/11/93
-.\" $Id: rwhod.8,v 1.2 1996/07/08 22:09:49 ccappuc Exp $
+.\" $Id: rwhod.8,v 1.3 1997/03/26 00:39:34 deraadt Exp $
.\"
.Dd December 11, 1993
.Dt RWHOD 8
@@ -69,21 +69,21 @@ The messages sent and received, are of the form:
struct outmp {
char out_line[8]; /* tty name */
char out_name[8]; /* user id */
- long out_time; /* time on */
+ int32_t out_time; /* time on */
};
struct whod {
char wd_vers;
char wd_type;
char wd_fill[2];
- int wd_sendtime;
- int wd_recvtime;
+ int32_t wd_sendtime;
+ int32_t wd_recvtime;
char wd_hostname[32];
- int wd_loadav[3];
- int wd_boottime;
+ int32_t wd_loadav[3];
+ int32_t wd_boottime;
struct whoent {
struct outmp we_utmp;
- int we_idle;
+ int32_t we_idle;
} wd_we[1024 / sizeof (struct whoent)];
};
.Ed