Browse Source

Minor documentation improvement

Tal Aloni 7 years ago
parent
commit
17ceac4f81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      SMBLibrary/Server/SMB2/CancelHelper.cs

+ 1 - 1
SMBLibrary/Server/SMB2/CancelHelper.cs

@@ -31,7 +31,7 @@ namespace SMBLibrary.Server.SMB2
                     if (status == NTStatus.STATUS_SUCCESS || status == NTStatus.STATUS_CANCELLED)
                     {
                         state.RemoveAsyncContext(context);
-                        // If the target request is successfully canceled, the target request MUST be failed by sending
+                        // [MS-SMB2] If the target request is successfully canceled, the target request MUST be failed by sending
                         // an ERROR response packet [..] with the status field of the SMB2 header set to STATUS_CANCELLED.
                         ErrorResponse response = new ErrorResponse(request.CommandName, NTStatus.STATUS_CANCELLED);
                         response.Header.IsAsync = true;