fix compilation errors caused by new nfsv2.h

This commit is contained in:
glass 1994-06-14 00:31:43 +00:00
parent 72cf8eaa9d
commit 6efa4eb0bc
2 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.8 1993/10/23 02:33:48 cgd Exp $
# $Id: Makefile,v 1.9 1994/06/14 00:31:43 glass Exp $
LIB= netboot
SRCS+= arp.c bootinfo.c bootp.c exec.c globals.c in_cksum.c \
@ -7,7 +7,7 @@ SRCS+= arp.c bootinfo.c bootp.c exec.c globals.c in_cksum.c \
SRCS+= boot_nfs.c boot_tftp.c
CFLAGS+= -DDEBUG
CFLAGS+= -DPARANOID -Wall
CFLAGS+= -DPARANOID
CFLAGS+= -I${.CURDIR}/../libc_sa

View File

@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from @(#) Header: rpc.c,v 1.12 93/09/28 08:31:56 leres Exp (LBL)
* $Id: rpc.c,v 1.3 1993/10/16 07:57:47 cgd Exp $
* $Id: rpc.c,v 1.4 1994/06/14 00:31:51 glass Exp $
*/
#include <sys/param.h>
@ -351,13 +351,13 @@ getnfsinfo(d, tp, sp, fp)
panic("getnfsinfo: %m");
if (tp) {
*tp = ntohl(rdata.fa.fa_mtime.tv_sec);
t = ntohl(rdata.fa.fa_atime.tv_sec);
*tp = ntohl(rdata.fa.fa_nfsmtime.nfs_sec);
t = ntohl(rdata.fa.fa_nfsatime.nfs_sec);
if (*tp < t)
*tp = t;
}
if (sp)
*sp = ntohl(rdata.fa.fa_size);
*sp = ntohl(rdata.fa.fa_nfssize);
if (fp)
*fp = ntohl(rdata.fa.fa_type);
}
@ -412,9 +412,9 @@ lookupfh(d, name, fhp, tp, sp, fp)
bcopy(rdata.fh, fhp, sizeof(rdata.fh));
if (tp)
*tp = ntohl(rdata.fa.fa_ctime.tv_sec);
*tp = ntohl(rdata.fa.fa_nfsctime.nfs_sec);
if (sp)
*sp = ntohl(rdata.fa.fa_size);
*sp = ntohl(rdata.fa.fa_nfssize);
if (fp)
*fp = ntohl(rdata.fa.fa_type);
return (0);