Applying patch from coyled to fix IAR support with the SimianGrid connectors

soprefactor
John Hurliman 2010-06-01 13:32:14 -07:00
parent a863eb9da3
commit d740035ef4
1 changed files with 1 additions and 1 deletions

View File

@ -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;