diff options
Diffstat (limited to 'OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs')
-rw-r--r-- | OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs b/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs index d02ff9b..47b4fa6 100644 --- a/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/WebkeyAuthenticationService.cs | |||
@@ -60,6 +60,13 @@ namespace OpenSim.Services.AuthenticationService | |||
60 | { | 60 | { |
61 | } | 61 | } |
62 | 62 | ||
63 | public string Authenticate(UUID principalID, string password, int lifetime, out UUID realID) | ||
64 | { | ||
65 | realID = UUID.Zero; | ||
66 | |||
67 | return Authenticate(principalID, password, lifetime); | ||
68 | } | ||
69 | |||
63 | public string Authenticate(UUID principalID, string password, int lifetime) | 70 | public string Authenticate(UUID principalID, string password, int lifetime) |
64 | { | 71 | { |
65 | if (new UUID(password) == UUID.Zero) | 72 | if (new UUID(password) == UUID.Zero) |