Browse Source

SMB1: Transaction2SetFileInformationRequest: SetInformation method will now set InformationLevel

Tal Aloni 7 years ago
parent
commit
e87bcf5f20

+ 1 - 0
SMBLibrary/SMB1/Transaction2Subcommands/Transaction2SetFileInformationRequest.cs

@@ -58,6 +58,7 @@ namespace SMBLibrary.SMB1
 
         public void SetInformation(SetInformation information)
         {
+            InformationLevel = information.InformationLevel;
             InformationBytes = information.GetBytes();
         }