diff options
author | Diva Canto | 2009-08-06 17:42:28 -0700 |
---|---|---|
committer | Diva Canto | 2009-08-06 17:42:28 -0700 |
commit | 11c698af67e73230ca0806ee12d4845a06b11479 (patch) | |
tree | 413ddca94c0fb10bb597c089da428a039ea99bc5 | |
parent | Added ToXml2() to ISceneObject, so that components other than regions can use... (diff) | |
download | opensim-SC_OLD-11c698af67e73230ca0806ee12d4845a06b11479.zip opensim-SC_OLD-11c698af67e73230ca0806ee12d4845a06b11479.tar.gz opensim-SC_OLD-11c698af67e73230ca0806ee12d4845a06b11479.tar.bz2 opensim-SC_OLD-11c698af67e73230ca0806ee12d4845a06b11479.tar.xz |
Added missing trailing slash in AuthenticationService.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/AuthenticationService/AuthenticationService.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Services/AuthenticationService/AuthenticationService.cs b/OpenSim/Services/AuthenticationService/AuthenticationService.cs index 3e6c3b2..b81a004 100644 --- a/OpenSim/Services/AuthenticationService/AuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/AuthenticationService.cs | |||
@@ -83,6 +83,8 @@ namespace OpenSim.Services.AuthenticationService | |||
83 | 83 | ||
84 | m_PerformAuthentication = authConfig.GetBoolean("Authenticate", true); | 84 | m_PerformAuthentication = authConfig.GetBoolean("Authenticate", true); |
85 | m_AuthorityURL = "http://" + authConfig.GetString("Authority", "localhost"); | 85 | m_AuthorityURL = "http://" + authConfig.GetString("Authority", "localhost"); |
86 | if (!m_AuthorityURL.EndsWith("/")) | ||
87 | m_AuthorityURL += "/"; | ||
86 | } | 88 | } |
87 | 89 | ||
88 | // | 90 | // |