Oops, add missing bcopy of upper->lower table

This commit is contained in:
Andrey A. Chernov 1998-02-23 09:59:08 +00:00
parent 2183143825
commit 64fb806ca2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=33762
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_vfsops.c,v 1.24 1998/02/18 09:28:43 jkh Exp $ */
/* $Id: msdosfs_vfsops.c,v 1.25 1998/02/22 15:09:46 ache Exp $ */
/* $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $ */
/*-
@ -106,6 +106,8 @@ update_mp(mp, argp)
pmp->pm_flags |= argp->flags & MSDOSFSMNT_MNTOPT;
if (pmp->pm_flags & MSDOSFSMNT_U2WTABLE)
bcopy(argp->u2w, pmp->pm_u2w, sizeof(pmp->pm_u2w));
if (pmp->pm_flags & MSDOSFSMNT_ULTABLE)
bcopy(argp->ul, pmp->pm_ul, sizeof(pmp->pm_ul));
#ifndef __FreeBSD__
/*

View File

@ -1,4 +1,4 @@
/* $Id: msdosfs_vfsops.c,v 1.24 1998/02/18 09:28:43 jkh Exp $ */
/* $Id: msdosfs_vfsops.c,v 1.25 1998/02/22 15:09:46 ache Exp $ */
/* $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $ */
/*-
@ -106,6 +106,8 @@ update_mp(mp, argp)
pmp->pm_flags |= argp->flags & MSDOSFSMNT_MNTOPT;
if (pmp->pm_flags & MSDOSFSMNT_U2WTABLE)
bcopy(argp->u2w, pmp->pm_u2w, sizeof(pmp->pm_u2w));
if (pmp->pm_flags & MSDOSFSMNT_ULTABLE)
bcopy(argp->ul, pmp->pm_ul, sizeof(pmp->pm_ul));
#ifndef __FreeBSD__
/*