Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Ross <Tratcher@Outlook.com>2022-11-12 00:54:50 +0300
committerGitHub <noreply@github.com>2022-11-12 00:54:50 +0300
commitd480178bc6ab51d1f2c491f783ea7d12b27fc9a4 (patch)
tree43eb6fd64ec5d1304a3ac17d82198f90c08e89e3
parentd15a730394403fea0c5d7efd46d2f06443b8b136 (diff)
Fix comment
-rw-r--r--src/Servers/IIS/IIS/src/Core/IISHttpContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Servers/IIS/IIS/src/Core/IISHttpContext.cs b/src/Servers/IIS/IIS/src/Core/IISHttpContext.cs
index 9edee127c0..bb0d798f48 100644
--- a/src/Servers/IIS/IIS/src/Core/IISHttpContext.cs
+++ b/src/Servers/IIS/IIS/src/Core/IISHttpContext.cs
@@ -233,7 +233,7 @@ internal abstract partial class IISHttpContext : NativeRequestContext, IThreadPo
else
{
// Mismatch, fall back
- // The failing test case here is "/base/call//../ball//path1//path2", reduced to "/base/call/ball//path1//path2",
+ // The failing test case here is "/base/call//../bat//path1//path2", reduced to "/base/call/bat//path1//path2",
// where http.sys collapses "//" before "../", but we do "../" first. We've lost the context that there were dot segments,
// or duplicate slashes, how do we figure out that "call/" can be eliminated?
originalOffset = 0;