diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-01 19:29:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-01 19:29:45 +0000 |
commit | 48a707bf8920e6090d5861821a88707dc57621bd (patch) | |
tree | e22466625f0811f7da46a9a03d31891e5c3a08b6 | |
parent | 3d61f2753ec54a736174bd59ff558ef4515c23b5 (diff) |
ut_time is an int
-rw-r--r-- | lib/librpcsvc/rnusers.x | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/librpcsvc/rnusers.x b/lib/librpcsvc/rnusers.x index d2ad92c5135..d09bc0eb32c 100644 --- a/lib/librpcsvc/rnusers.x +++ b/lib/librpcsvc/rnusers.x @@ -35,7 +35,7 @@ %#ifndef lint %/*static char sccsid[] = "from: @(#)rnusers.x 1.2 87/09/20 Copyr 1987 Sun Micro";*/ %/*static char sccsid[] = "from: @(#)rnusers.x 2.1 88/08/01 4.0 RPCSRC";*/ -%static char rcsid[] = "$Id: rnusers.x,v 1.4 1996/09/22 08:39:59 tholo Exp $"; +%static char rcsid[] = "$Id: rnusers.x,v 1.5 1997/08/01 19:29:44 millert Exp $"; %#endif /* not lint */ #endif @@ -63,7 +63,7 @@ % char *ut_line; /* tty name */ % char *ut_name; /* user id */ % char *ut_host; /* host name, if remote */ -% long ut_time; /* time on */ +% int ut_time; /* time on */ %}; %typedef struct ru_utmp rutmp; % @@ -123,7 +123,7 @@ % if (!xdr_bytes(xdrs, &objp->ut_host, &size, RNUSERS_MAXHOSTLEN)) { % return (FALSE); % } -% if (!xdr_long(xdrs, &objp->ut_time)) { +% if (!xdr_int(xdrs, &objp->ut_time)) { % return (FALSE); % } % return (TRUE); |