https://git.reactos.org/?p=reactos.git;a=commitdiff;h=14d3b53cc6199d71173208987f3e82dd98c1e05a

commit 14d3b53cc6199d71173208987f3e82dd98c1e05a
Author:     Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org>
AuthorDate: Thu Feb 22 20:33:34 2024 +0100
Commit:     Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org>
CommitDate: Thu Feb 22 22:43:40 2024 +0100

    [NTFS] Typo fix: "Steam" -> "Stream"
---
 drivers/filesystems/ntfs/finfo.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/filesystems/ntfs/finfo.c b/drivers/filesystems/ntfs/finfo.c
index b8c039a5d15..f6cfdce68ed 100644
--- a/drivers/filesystems/ntfs/finfo.c
+++ b/drivers/filesystems/ntfs/finfo.c
@@ -223,10 +223,10 @@ NtfsGetNetworkOpenInformation(PNTFS_FCB Fcb,
 
 static
 NTSTATUS
-NtfsGetSteamInformation(PNTFS_FCB Fcb,
-                        PDEVICE_EXTENSION DeviceExt,
-                        PFILE_STREAM_INFORMATION StreamInfo,
-                        PULONG BufferLength)
+NtfsGetStreamInformation(PNTFS_FCB Fcb,
+                         PDEVICE_EXTENSION DeviceExt,
+                         PFILE_STREAM_INFORMATION StreamInfo,
+                         PULONG BufferLength)
 {
     ULONG CurrentSize;
     FIND_ATTR_CONTXT Context;
@@ -492,10 +492,10 @@ NtfsQueryInformation(PNTFS_IRP_CONTEXT IrpContext)
             break;
 
         case FileStreamInformation:
-            Status = NtfsGetSteamInformation(Fcb,
-                                             DeviceObject->DeviceExtension,
-                                             SystemBuffer,
-                                             &BufferLength);
+            Status = NtfsGetStreamInformation(Fcb,
+                                              DeviceObject->DeviceExtension,
+                                              SystemBuffer,
+                                              &BufferLength);
             break;
 
         case FileAlternateNameInformation:

Reply via email to