From eda09d87635683d92d1661f6bbedf678c879c08f Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Mon, 16 Mar 2015 23:40:34 +0000 Subject: Fix XBakes simulator-side authentication regression failure Unlike the other connectors, XBakes uses a service auth retrieved from ServiceAuth.Create() and not code inherited from BaseServiceConnector. Fixes regression from 7d3bafd5 (Wed 4 Mar 2015) where the new CompoundAuthenticator did not implement IServiceAuth.AddAuthorization() --- OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs') diff --git a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs index 3c13bbf..b20f8f5 100644 --- a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs +++ b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs @@ -40,6 +40,8 @@ namespace OpenSim.Framework.ServiceAuth { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); + public string Name { get { return "BasicHttp"; } } + private string m_Username, m_Password; private string m_CredentialsB64; -- cgit v1.1