sync to rwhod.h
authorderaadt <deraadt@openbsd.org>
Wed, 26 Mar 1997 00:39:34 +0000 (00:39 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 26 Mar 1997 00:39:34 +0000 (00:39 +0000)
usr.sbin/rwhod/rwhod.8

index 7af259f..d9ad22c 100644 (file)
@@ -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