fix vs2010 build

This commit is contained in:
UbitUmarov
2012-08-16 15:26:16 +01:00
parent 90ad98370a
commit db3f0a3748
5 changed files with 6 additions and 3 deletions

View File

@@ -64,6 +64,7 @@ namespace OpenSim.Services.AuthenticationService
{
AuthenticationData data = m_Database.Get(principalID);
string result = String.Empty;
realID = UUID.Zero;
if (data != null && data.Data != null)
{
if (data.Data.ContainsKey("webLoginKey"))
@@ -85,7 +86,7 @@ namespace OpenSim.Services.AuthenticationService
}
}
realID = UUID.Zero;
if (result == string.Empty)
{
@@ -96,6 +97,8 @@ namespace OpenSim.Services.AuthenticationService
{
m_log.DebugFormat("[AUTH SERVICE]: PrincipalID {0} or its data not found", principalID);
}
return result;
}
}