diff options
author | Melanie | 2010-03-22 18:51:07 +0000 |
---|---|---|
committer | Melanie | 2010-03-22 18:51:07 +0000 |
commit | d378c758e1069507a9db837ed24f1e7c8a03c79a (patch) | |
tree | d8db7821aa2655ad99cc0d3ac0aa6dcb4f1dafb1 /OpenSim/Services | |
parent | Remove the reading of estate_settings.xml and the associated processing of (diff) | |
parent | * Updated libomv libraries to fix JSON (LLSD) decoding errors on null values ... (diff) | |
download | opensim-SC-d378c758e1069507a9db837ed24f1e7c8a03c79a.zip opensim-SC-d378c758e1069507a9db837ed24f1e7c8a03c79a.tar.gz opensim-SC-d378c758e1069507a9db837ed24f1e7c8a03c79a.tar.bz2 opensim-SC-d378c758e1069507a9db837ed24f1e7c8a03c79a.tar.xz |
Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Connectors/SimianGrid/SimianAuthenticationServiceConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/SimianGrid/SimianAuthenticationServiceConnector.cs b/OpenSim/Services/Connectors/SimianGrid/SimianAuthenticationServiceConnector.cs index cc53d6c..29c9219 100644 --- a/OpenSim/Services/Connectors/SimianGrid/SimianAuthenticationServiceConnector.cs +++ b/OpenSim/Services/Connectors/SimianGrid/SimianAuthenticationServiceConnector.cs | |||
@@ -114,7 +114,7 @@ namespace OpenSim.Services.Connectors.SimianGrid | |||
114 | { | 114 | { |
115 | string credential = identity["Credential"].AsString(); | 115 | string credential = identity["Credential"].AsString(); |
116 | 116 | ||
117 | if (password == credential || Utils.MD5String(password) == credential) | 117 | if (password == credential || "$1$" + Utils.MD5String(password) == credential) |
118 | return Authorize(principalID); | 118 | return Authorize(principalID); |
119 | } | 119 | } |
120 | } | 120 | } |