mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
Applying patch from coyled to fix IAR support with the SimianGrid connectors
This commit is contained in:
@@ -116,7 +116,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||
{
|
||||
string credential = identity["Credential"].AsString();
|
||||
|
||||
if (password == credential || "$1$" + Utils.MD5String(password) == credential || Utils.MD5String(password) == credential)
|
||||
if (password == credential || "$1$" + password == credential || "$1$" + Utils.MD5String(password) == credential || Utils.MD5String(password) == credential)
|
||||
return Authorize(principalID);
|
||||
|
||||
md5hashFound = true;
|
||||
|
||||
Reference in New Issue
Block a user