From 11c698af67e73230ca0806ee12d4845a06b11479 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Thu, 6 Aug 2009 17:42:28 -0700 Subject: Added missing trailing slash in AuthenticationService. --- OpenSim/Services/AuthenticationService/AuthenticationService.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Services/AuthenticationService') 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 m_PerformAuthentication = authConfig.GetBoolean("Authenticate", true); m_AuthorityURL = "http://" + authConfig.GetString("Authority", "localhost"); + if (!m_AuthorityURL.EndsWith("/")) + m_AuthorityURL += "/"; } // -- cgit v1.1