diff options
author | Melanie | 2012-07-15 02:24:01 +0200 |
---|---|---|
committer | Melanie | 2012-07-15 02:24:01 +0200 |
commit | 6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab (patch) | |
tree | 2647e59276e01559e62e39e90ef56d5d2b482749 /OpenSim/Region/CoreModules/Scripting/LSLHttp | |
parent | Set up https to work like http does in the poll handler (diff) | |
download | opensim-SC-6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab.zip opensim-SC-6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab.tar.gz opensim-SC-6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab.tar.bz2 opensim-SC-6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab.tar.xz |
Fix a double parenthesis typo
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/LSLHttp')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs index c0c97c9..6579f07 100644 --- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | |||
@@ -214,7 +214,7 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp | |||
214 | 214 | ||
215 | string uri = "/lslhttps/" + urlcode.ToString() + "/"; | 215 | string uri = "/lslhttps/" + urlcode.ToString() + "/"; |
216 | 216 | ||
217 | PollServiceEventArgs args = new PollServiceEventArgs(HttpRequestHandler, HasEvents, GetEvents, NoEvents, urlcode, 25000)); | 217 | PollServiceEventArgs args = new PollServiceEventArgs(HttpRequestHandler, HasEvents, GetEvents, NoEvents, urlcode, 25000); |
218 | args.Type = PollServiceEventArgs.EventType.LslHttp; | 218 | args.Type = PollServiceEventArgs.EventType.LslHttp; |
219 | m_HttpsServer.AddPollServiceHTTPHandler(uri, args); | 219 | m_HttpsServer.AddPollServiceHTTPHandler(uri, args); |
220 | 220 | ||