fix prev patch
[mono.git] / mcs / class / System / System.Net / HttpListenerContext.cs
index 6ec4ae106a739fc391f774f253df97801c5d9a12..6d41e4207bd134f487a02f6b7f87127888ed2a49 100644 (file)
@@ -86,7 +86,7 @@ namespace System.Net {
                        if (header == null || header.Length < 2)
                                return;
 
-                       string [] authenticationData = header.Substring (header.IndexOf (":")+1).Split (new char [] {' '});
+                       string [] authenticationData = header.Substring (header.IndexOf (':') + 1).Split (new char [] {' '});
 
                        if (string.Compare (authenticationData [0], "basic", true) == 0) {
                                user = ParseBasicAuthentication (authenticationData [1]);
@@ -96,7 +96,7 @@ namespace System.Net {
                internal IPrincipal ParseBasicAuthentication (string authData) {
                        try {
                                // Basic AUTH Data is a formatted Base64 String
-                               string domain = null;
+                               //string domain = null;
                                string user = null;
                                string password = null;
                                int pos = -1;
@@ -105,7 +105,7 @@ namespace System.Net {
                                // The format is DOMAIN\username:password
                                // Domain is optional
 
-                               pos = authString.IndexOf (":");
+                               pos = authString.IndexOf (':');
        
                                // parse the password off the end
                                password = authString.Substring (pos+1);
@@ -114,10 +114,10 @@ namespace System.Net {
                                authString = authString.Substring (0, pos);
        
                                // check if there is a domain
-                               pos = authString.IndexOf ("\\");
+                               pos = authString.IndexOf ('\\');
        
                                if (pos > 0) {
-                                       domain = authString.Substring (0, pos);
+                                       //domain = authString.Substring (0, pos);
                                        user = authString.Substring (pos);
                                } else {
                                        user = authString;