Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-4]: src/sys/nfs Pull up revision 1.71:
details: https://anonhg.NetBSD.org/src/rev/09df18f0f3ff
branches: netbsd-1-4
changeset: 469353:09df18f0f3ff
user: he <he%NetBSD.org@localhost>
date: Fri Sep 10 22:24:25 1999 +0000
description:
Pull up revision 1.71:
Don't truncate minor numbers > 255 on a NFS client. (is)
diffstat:
sys/nfs/nfs_subs.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r c181caf200c5 -r 09df18f0f3ff sys/nfs/nfs_subs.c
--- a/sys/nfs/nfs_subs.c Fri Sep 10 22:15:11 1999 +0000
+++ b/sys/nfs/nfs_subs.c Fri Sep 10 22:24:25 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: nfs_subs.c,v 1.69 1999/03/24 05:51:28 mrg Exp $ */
+/* $NetBSD: nfs_subs.c,v 1.69.2.1 1999/09/10 22:24:25 he Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -1532,8 +1532,8 @@
if (v3) {
vtyp = nfsv3tov_type(fp->fa_type);
vmode = fxdr_unsigned(u_short, fp->fa_mode);
- rdev = makedev(fxdr_unsigned(u_char, fp->fa3_rdev.specdata1),
- fxdr_unsigned(u_char, fp->fa3_rdev.specdata2));
+ rdev = makedev(fxdr_unsigned(u_int32_t, fp->fa3_rdev.specdata1),
+ fxdr_unsigned(u_int32_t, fp->fa3_rdev.specdata2));
fxdr_nfsv3time(&fp->fa3_mtime, &mtime);
} else {
vtyp = nfsv2tov_type(fp->fa_type);
Home |
Main Index |
Thread Index |
Old Index