From owner-cvs-sys Wed Feb 25 22:46:43 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA02147 for cvs-sys-outgoing; Wed, 25 Feb 1998 22:46:43 -0800 (PST) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA02090; Wed, 25 Feb 1998 22:46:16 -0800 (PST) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA02748; Wed, 25 Feb 1998 22:45:48 -0800 (PST) Date: Wed, 25 Feb 1998 22:45:48 -0800 (PST) Message-Id: <199802260645.WAA02748@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/msdosfs direntry.h msdosfs_conv.c msdosfs_lookup.c msdosfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk msmith 1998/02/25 22:45:48 PST Modified files: sys/msdosfs direntry.h msdosfs_conv.c msdosfs_lookup.c msdosfs_vnops.c Log: Fixes for some bugs in the VFAT/FAT32 support: - 'mv longnamedfile1 longnamedfile2' would cause longnamedfile2 to lose its long name. - Long names have trailing spaces/dots stripped for lookup as well as assignment. - A lockup when the mdsosfs was accessed from within the Linux emulator is fixed. - A bug whereby long filenames were recognised by Microsoft operating systems but not FreeBSD is fixed. Submitted by: Dmitrij Tejblum Revision Changes Path 1.12 +2 -1 src/sys/msdosfs/direntry.h 1.24 +16 -4 src/sys/msdosfs/msdosfs_conv.c 1.22 +5 -3 src/sys/msdosfs/msdosfs_lookup.c 1.62 +8 -13 src/sys/msdosfs/msdosfs_vnops.c