diff options
author | Diva Canto | 2010-04-27 18:37:34 -0700 |
---|---|---|
committer | Diva Canto | 2010-04-27 18:37:34 -0700 |
commit | 044c1cf5f6e38799526be15cc2c7f4a7d0d9350f (patch) | |
tree | d5af42f49e67aabe75a17e666bd5a2a78fd31d1d /OpenSim/Services/AuthenticationService | |
parent | * Thanks cmickeyb, for a patch that sanity checks if the response from m_Data... (diff) | |
download | opensim-SC_OLD-044c1cf5f6e38799526be15cc2c7f4a7d0d9350f.zip opensim-SC_OLD-044c1cf5f6e38799526be15cc2c7f4a7d0d9350f.tar.gz opensim-SC_OLD-044c1cf5f6e38799526be15cc2c7f4a7d0d9350f.tar.bz2 opensim-SC_OLD-044c1cf5f6e38799526be15cc2c7f4a7d0d9350f.tar.xz |
Changed GetToken from protected to public. This is not exposed at the interface.
Diffstat (limited to 'OpenSim/Services/AuthenticationService')
-rw-r--r-- | OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs index 9af61a9..242aba3 100644 --- a/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs +++ b/OpenSim/Services/AuthenticationService/AuthenticationServiceBase.cs | |||
@@ -127,7 +127,7 @@ namespace OpenSim.Services.AuthenticationService | |||
127 | return true; | 127 | return true; |
128 | } | 128 | } |
129 | 129 | ||
130 | protected string GetToken(UUID principalID, int lifetime) | 130 | public string GetToken(UUID principalID, int lifetime) |
131 | { | 131 | { |
132 | UUID token = UUID.Random(); | 132 | UUID token = UUID.Random(); |
133 | 133 | ||