fix vs2010 build

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

View File

@ -140,6 +140,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Authentication
public string Authenticate(UUID principalID, string password, int lifetime, out UUID realID)
{
// Not implemented at the regions
realID = UUID.Zero;
return string.Empty;
}

View File

@ -65,7 +65,6 @@ namespace OpenSim.Services.AuthenticationService
public string Authenticate(UUID principalID, string password, int lifetime)
{
UUID realID;
return Authenticate(principalID, password, lifetime, out realID);
}

View File

@ -63,7 +63,6 @@ namespace OpenSim.Services.AuthenticationService
public string Authenticate(UUID principalID, string password, int lifetime, out UUID realID)
{
realID = UUID.Zero;
return Authenticate(principalID, password, lifetime);
}

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

View File

@ -104,6 +104,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
public string Authenticate(UUID principalID, string password, int lifetime, out UUID realID)
{
realID = UUID.Zero;
return Authenticate(principalID, password, lifetime);
}