From 6c373ff516a4d81fb7ff42fa2e5f83336c689d02 Mon Sep 17 00:00:00 2001 From: phk Date: Sat, 17 Jul 1999 18:43:50 +0000 Subject: I have not one single time remembered the name of this function correctly so obviously I gave it the wrong name. s/umakedev/makeudev/g --- sys/nfsserver/nfs_serv.c | 4 ++-- sys/nfsserver/nfs_srvsubs.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/nfsserver') diff --git a/sys/nfsserver/nfs_serv.c b/sys/nfsserver/nfs_serv.c index a32c09a..68cc700 100644 --- a/sys/nfsserver/nfs_serv.c +++ b/sys/nfsserver/nfs_serv.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_serv.c 8.8 (Berkeley) 7/31/95 - * $Id: nfs_serv.c,v 1.79 1999/06/23 04:44:11 julian Exp $ + * $Id: nfs_serv.c,v 1.80 1999/06/30 04:29:13 julian Exp $ */ /* @@ -1875,7 +1875,7 @@ nfsrv_mknod(nfsd, slp, procp, mrq) nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED); major = fxdr_unsigned(u_int32_t, *tl++); minor = fxdr_unsigned(u_int32_t, *tl); - vap->va_rdev = umakedev(major, minor); + vap->va_rdev = makeudev(major, minor); } /* diff --git a/sys/nfsserver/nfs_srvsubs.c b/sys/nfsserver/nfs_srvsubs.c index d2d4365..68a936a 100644 --- a/sys/nfsserver/nfs_srvsubs.c +++ b/sys/nfsserver/nfs_srvsubs.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_subs.c 8.8 (Berkeley) 5/22/95 - * $Id: nfs_subs.c,v 1.77 1999/06/26 02:46:30 mckusick Exp $ + * $Id: nfs_subs.c,v 1.78 1999/06/27 11:44:19 peter Exp $ */ /* @@ -1260,7 +1260,7 @@ nfs_loadattrcache(vpp, mdp, dposp, vaper) if (v3) { vtyp = nfsv3tov_type(fp->fa_type); vmode = fxdr_unsigned(u_short, fp->fa_mode); - rdev = umakedev(fxdr_unsigned(int, fp->fa3_rdev.specdata1), + rdev = makeudev(fxdr_unsigned(int, fp->fa3_rdev.specdata1), fxdr_unsigned(int, fp->fa3_rdev.specdata2)); fxdr_nfsv3time(&fp->fa3_mtime, &mtime); } else { -- cgit v1.1