From b1c2cb3d8206b845a26fe04371dc1a1a6b2cbec2 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 6 Jan 2009 17:27:04 +0000 Subject: * minor: Move GetRandomCapsPath() to a CapsUtil class --- OpenSim/Region/Communications/Local/LocalLoginService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/Communications/Local') diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index e68398b..f3f3434 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs @@ -35,6 +35,7 @@ using log4net; using OpenSim.Framework; using OpenSim.Framework.Communications; using OpenSim.Framework.Communications.Cache; +using OpenSim.Framework.Communications.Capabilities; namespace OpenSim.Region.Communications.Local { @@ -295,7 +296,7 @@ namespace OpenSim.Region.Communications.Local response.RegionX = regionInfo.RegionLocX; response.RegionY = regionInfo.RegionLocY; - string capsPath = Util.GetRandomCapsPath(); + string capsPath = CapsUtil.GetRandomCapsPath(); // Don't use the following! It Fails for logging into any region not on the same port as the http server! // Kept here so it doesn't happen again! -- cgit v1.1