Browse Source

Renamed variable

Tal Aloni 7 năm trước cách đây
mục cha
commit
ae2f98fbbd
2 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 2 2
      SMBLibrary/SMB1/SMB1Header.cs
  2. 2 2
      SMBLibrary/SMB2/SMB2Header.cs

+ 2 - 2
SMBLibrary/SMB1/SMB1Header.cs

@@ -131,8 +131,8 @@ namespace SMBLibrary.SMB1
         {
             if (buffer.Length >= 4)
             {
-                byte[] signature = ByteReader.ReadBytes(buffer, 0, 4);
-                return ByteUtils.AreByteArraysEqual(signature, ProtocolSignature);
+                byte[] protocol = ByteReader.ReadBytes(buffer, 0, 4);
+                return ByteUtils.AreByteArraysEqual(protocol, ProtocolSignature);
             }
             return false;
         }

+ 2 - 2
SMBLibrary/SMB2/SMB2Header.cs

@@ -173,8 +173,8 @@ namespace SMBLibrary.SMB2
         {
             if (buffer.Length >= 4)
             {
-                byte[] signature = ByteReader.ReadBytes(buffer, 0, 4);
-                return ByteUtils.AreByteArraysEqual(signature, ProtocolSignature);
+                byte[] protocol = ByteReader.ReadBytes(buffer, 0, 4);
+                return ByteUtils.AreByteArraysEqual(protocol, ProtocolSignature);
             }
             return false;
         }