[ros-diffs] [pschweitzer] 33671: Set default return of IRP_MJ_QUERY_INFORMATION to STATUS_INVALID_PARAMETER

pschweitzer at svn.reactos.org pschweitzer at svn.reactos.org
Sat May 24 11:06:53 CEST 2008


Author: pschweitzer
Date: Sat May 24 04:06:53 2008
New Revision: 33671

URL: http://svn.reactos.org/svn/reactos?rev=33671&view=rev
Log:
Set default return of IRP_MJ_QUERY_INFORMATION to STATUS_INVALID_PARAMETER

Modified:
    trunk/reactos/drivers/filesystems/cdfs/finfo.c
    trunk/reactos/drivers/filesystems/fastfat/finfo.c
    trunk/reactos/drivers/filesystems/ntfs/finfo.c

Modified: trunk/reactos/drivers/filesystems/cdfs/finfo.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/cdfs/finfo.c?rev=33671&r1=33670&r2=33671&view=diff
==============================================================================
--- trunk/reactos/drivers/filesystems/cdfs/finfo.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/cdfs/finfo.c [iso-8859-1] Sat May 24 04:06:53 2008
@@ -390,7 +390,7 @@
 
       default:
 	DPRINT("Unimplemented information class %u\n", FileInformationClass);
-	Status = STATUS_NOT_SUPPORTED;
+	Status = STATUS_INVALID_PARAMETER;
 	break;
     }
 

Modified: trunk/reactos/drivers/filesystems/fastfat/finfo.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfat/finfo.c?rev=33671&r1=33670&r2=33671&view=diff
==============================================================================
--- trunk/reactos/drivers/filesystems/fastfat/finfo.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/fastfat/finfo.c [iso-8859-1] Sat May 24 04:06:53 2008
@@ -835,7 +835,7 @@
       RC = STATUS_NOT_IMPLEMENTED;
       break;
     default:
-      RC = STATUS_NOT_SUPPORTED;
+      RC = STATUS_INVALID_PARAMETER;
     }
 
   if (!(FCB->Flags & FCB_IS_PAGE_FILE))

Modified: trunk/reactos/drivers/filesystems/ntfs/finfo.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/ntfs/finfo.c?rev=33671&r1=33670&r2=33671&view=diff
==============================================================================
--- trunk/reactos/drivers/filesystems/ntfs/finfo.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/ntfs/finfo.c [iso-8859-1] Sat May 24 04:06:53 2008
@@ -248,7 +248,7 @@
 
     default:
       DPRINT("Unimplemented information class %u\n", FileInformationClass);
-      Status = STATUS_NOT_SUPPORTED;
+      Status = STATUS_INVALID_PARAMETER;
   }
 
   Irp->IoStatus.Status = Status;



More information about the Ros-diffs mailing list