From: deraadt Date: Wed, 26 Mar 1997 00:39:34 +0000 (+0000) Subject: sync to rwhod.h X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=297b15c69a51b76f86227d67052717809e89ee4c;p=openbsd sync to rwhod.h --- 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