aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs
index f33a045..d182a71 100644
--- a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs
+++ b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs
@@ -15,7 +15,7 @@ namespace OpenSim.Framework.ServiceAuth
15 private string m_Username, m_Password; 15 private string m_Username, m_Password;
16 private string m_CredentialsB64; 16 private string m_CredentialsB64;
17 17
18 private string remove_me; 18// private string remove_me;
19 19
20 public string Credentials 20 public string Credentials
21 { 21 {
@@ -24,7 +24,7 @@ namespace OpenSim.Framework.ServiceAuth
24 24
25 public BasicHttpAuthentication(IConfigSource config, string section) 25 public BasicHttpAuthentication(IConfigSource config, string section)
26 { 26 {
27 remove_me = section; 27// remove_me = section;
28 m_Username = Util.GetConfigVarFromSections<string>(config, "HttpAuthUsername", new string[] { "Network", section }, string.Empty); 28 m_Username = Util.GetConfigVarFromSections<string>(config, "HttpAuthUsername", new string[] { "Network", section }, string.Empty);
29 m_Password = Util.GetConfigVarFromSections<string>(config, "HttpAuthPassword", new string[] { "Network", section }, string.Empty); 29 m_Password = Util.GetConfigVarFromSections<string>(config, "HttpAuthPassword", new string[] { "Network", section }, string.Empty);
30 string str = m_Username + ":" + m_Password; 30 string str = m_Username + ":" + m_Password;