mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 10:29:15 +00:00
Oops, add missing bcopy of upper->lower table
This commit is contained in:
parent
2183143825
commit
64fb806ca2
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=33762
@ -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__
|
||||
/*
|
||||
|
@ -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__
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user