From 2c83b7a91b7d5436e010d714d85bba81069dea0f Mon Sep 17 00:00:00 2001 From: jdolecek Date: Sun, 27 Jun 2004 06:55:12 +0000 Subject: [PATCH] set gmtoff in the structure returned by MNT_GETARGS call --- sys/fs/msdosfs/msdosfs_vfsops.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/fs/msdosfs/msdosfs_vfsops.c b/sys/fs/msdosfs/msdosfs_vfsops.c index 5e9c08576919..11bc8b5abddd 100644 --- a/sys/fs/msdosfs/msdosfs_vfsops.c +++ b/sys/fs/msdosfs/msdosfs_vfsops.c @@ -1,4 +1,4 @@ -/* $NetBSD: msdosfs_vfsops.c,v 1.18 2004/05/25 14:54:56 hannken Exp $ */ +/* $NetBSD: msdosfs_vfsops.c,v 1.19 2004/06/27 06:55:12 jdolecek Exp $ */ /*- * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank. @@ -48,7 +48,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.18 2004/05/25 14:54:56 hannken Exp $"); +__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.19 2004/06/27 06:55:12 jdolecek Exp $"); #if defined(_KERNEL_OPT) #include "opt_quota.h" @@ -263,6 +263,7 @@ msdosfs_mount(mp, path, data, ndp, p) args.flags = pmp->pm_flags; args.version = MSDOSFSMNT_VERSION; args.dirmask = pmp->pm_dirmask; + args.gmtoff = pmp->pm_gmtoff; vfs_showexport(mp, &args.export, &pmp->pm_export); return copyout(&args, data, sizeof(args)); }