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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel de la Pena <mandel@microsoft.com>2018-12-20 15:36:36 +0300
committerMarek Safar <marek.safar@gmail.com>2018-12-21 15:12:53 +0300
commit2bb9a2b39ae3120f974300e46bc85b8784514bec (patch)
treee263ceca9be0e8fbb8431450d9323194582dd138 /mcs/class/System.Net.Http
parent4194c31994e95cdcb00914a1c57ada025bd70fb1 (diff)
Small typo.
Diffstat (limited to 'mcs/class/System.Net.Http')
-rw-r--r--mcs/class/System.Net.Http/CFNetworkHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Net.Http/CFNetworkHandler.cs b/mcs/class/System.Net.Http/CFNetworkHandler.cs
index ef480ad3220..72779aa823a 100644
--- a/mcs/class/System.Net.Http/CFNetworkHandler.cs
+++ b/mcs/class/System.Net.Http/CFNetworkHandler.cs
@@ -267,7 +267,7 @@ namespace System.Net.Http
var status = initialRequest.StatusCode;
if (IsRedirect (status) && allowAutoRedirect) {
bucket.StreamCanBeDisposed = true;
- // remove headers in a redirec for Authentication.
+ // remove headers in a redirect for Authentication.
request.Headers.Authorization = null;
var redirectResponse = await SendAsync (redirectRequest, cancellationToken, false).ConfigureAwait (false);
return redirectResponse;