diff options
author | UbitUmarov | 2017-05-27 06:30:23 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-27 06:30:23 +0100 |
commit | 582dc75381a2d8eff4a231cb5fce5889602f57c8 (patch) | |
tree | 2590d818741b85bb972690f75593d7b12aed83c1 /OpenSim/Region | |
parent | Merge branch 'master' into httptests (diff) | |
download | opensim-SC-582dc75381a2d8eff4a231cb5fce5889602f57c8.zip opensim-SC-582dc75381a2d8eff4a231cb5fce5889602f57c8.tar.gz opensim-SC-582dc75381a2d8eff4a231cb5fce5889602f57c8.tar.bz2 opensim-SC-582dc75381a2d8eff4a231cb5fce5889602f57c8.tar.xz |
remove a accent from a method name
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/RegionApplicationBase.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/DataSnapshot/DataRequestHandler.cs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/RegionApplicationBase.cs b/OpenSim/Region/Application/RegionApplicationBase.cs index 7e8308e..0112c1e 100644 --- a/OpenSim/Region/Application/RegionApplicationBase.cs +++ b/OpenSim/Region/Application/RegionApplicationBase.cs | |||
@@ -98,7 +98,7 @@ namespace OpenSim | |||
98 | server.Start(false, false); | 98 | server.Start(false, false); |
99 | 99 | ||
100 | MainServer.AddHttpServer(server); | 100 | MainServer.AddHttpServer(server); |
101 | MainServer.ÚnSecureInstance = server; | 101 | MainServer.UnSecureInstance = server; |
102 | 102 | ||
103 | MainServer.Instance = m_httpServer; | 103 | MainServer.Instance = m_httpServer; |
104 | 104 | ||
diff --git a/OpenSim/Region/OptionalModules/DataSnapshot/DataRequestHandler.cs b/OpenSim/Region/OptionalModules/DataSnapshot/DataRequestHandler.cs index 9273b20..5a01fa9 100644 --- a/OpenSim/Region/OptionalModules/DataSnapshot/DataRequestHandler.cs +++ b/OpenSim/Region/OptionalModules/DataSnapshot/DataRequestHandler.cs | |||
@@ -52,12 +52,12 @@ namespace OpenSim.Region.DataSnapshot | |||
52 | m_externalData = externalData; | 52 | m_externalData = externalData; |
53 | 53 | ||
54 | //Register HTTP handler | 54 | //Register HTTP handler |
55 | if (MainServer.ÚnSecureInstance.AddHTTPHandler("collector", OnGetSnapshot)) | 55 | if (MainServer.UnSecureInstance.AddHTTPHandler("collector", OnGetSnapshot)) |
56 | { | 56 | { |
57 | m_log.Info("[DATASNAPSHOT]: Set up snapshot service"); | 57 | m_log.Info("[DATASNAPSHOT]: Set up snapshot service"); |
58 | } | 58 | } |
59 | // Register validation callback handler | 59 | // Register validation callback handler |
60 | MainServer.ÚnSecureInstance.AddHTTPHandler("validate", OnValidate); | 60 | MainServer.UnSecureInstance.AddHTTPHandler("validate", OnValidate); |
61 | 61 | ||
62 | } | 62 | } |
63 | 63 | ||