aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
diff options
context:
space:
mode:
authorMelanie2012-07-15 02:24:01 +0200
committerMelanie2012-07-15 02:24:01 +0200
commit6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab (patch)
tree2647e59276e01559e62e39e90ef56d5d2b482749 /OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
parentSet up https to work like http does in the poll handler (diff)
downloadopensim-SC_OLD-6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab.zip
opensim-SC_OLD-6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab.tar.gz
opensim-SC_OLD-6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab.tar.bz2
opensim-SC_OLD-6f7b5ef4cb7a7ba5a780fbb602b82d01347957ab.tar.xz
Fix a double parenthesis typo
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs2
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