Module Name: src
Committed By: mlelstv
Date: Fri Jul 30 16:40:43 UTC 2010
Modified Files:
src/sys/fs/msdosfs: msdosfs_lookup.c
Log Message:
Return EINVAL for rename and delete operations to the
root directory instead of the erroneous EROFS.
To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/fs/msdosfs/msdosfs_lookup.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/fs/msdosfs/msdosfs_lookup.c
diff -u src/sys/fs/msdosfs/msdosfs_lookup.c:1.21 src/sys/fs/msdosfs/msdosfs_lookup.c:1.22
--- src/sys/fs/msdosfs/msdosfs_lookup.c:1.21 Thu Jun 24 13:03:09 2010
+++ src/sys/fs/msdosfs/msdosfs_lookup.c Fri Jul 30 16:40:43 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: msdosfs_lookup.c,v 1.21 2010/06/24 13:03:09 hannken Exp $ */
+/* $NetBSD: msdosfs_lookup.c,v 1.22 2010/07/30 16:40:43 mlelstv Exp $ */
/*-
* Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@@ -48,7 +48,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_lookup.c,v 1.21 2010/06/24 13:03:09 hannken Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_lookup.c,v 1.22 2010/07/30 16:40:43 mlelstv Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -461,7 +461,7 @@
* Don't allow deleting the root.
*/
if (blkoff == MSDOSFSROOT_OFS)
- return EROFS; /* really? XXX */
+ return EINVAL;
/*
* Write access to directory required to delete files.
@@ -497,7 +497,7 @@
return (EROFS);
if (blkoff == MSDOSFSROOT_OFS)
- return EROFS; /* really? XXX */
+ return EINVAL;
error = VOP_ACCESS(vdp, VWRITE, cnp->cn_cred);
if (error)