diff options
author | Justin Clarke Casey | 2009-03-11 18:21:47 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-03-11 18:21:47 +0000 |
commit | 2e6e0cee28a34579091437e37fbbbb75342258e3 (patch) | |
tree | c349a052d4de3448695e097fbd8cf38767dad3c6 | |
parent | * Make all coded defaults match settings in OpenSim.ini.example (diff) | |
download | opensim-SC_OLD-2e6e0cee28a34579091437e37fbbbb75342258e3.zip opensim-SC_OLD-2e6e0cee28a34579091437e37fbbbb75342258e3.tar.gz opensim-SC_OLD-2e6e0cee28a34579091437e37fbbbb75342258e3.tar.bz2 opensim-SC_OLD-2e6e0cee28a34579091437e37fbbbb75342258e3.tar.xz |
* fix build break
-rw-r--r-- | OpenSim/Framework/Communications/GridInfoService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/GridInfoService.cs b/OpenSim/Framework/Communications/GridInfoService.cs index bb54c1b..4ad447d 100644 --- a/OpenSim/Framework/Communications/GridInfoService.cs +++ b/OpenSim/Framework/Communications/GridInfoService.cs | |||
@@ -109,7 +109,8 @@ namespace OpenSim.Framework.Communications | |||
109 | _info["login"] | 109 | _info["login"] |
110 | = String.Format( | 110 | = String.Format( |
111 | "http://127.0.0.1:{0}/", | 111 | "http://127.0.0.1:{0}/", |
112 | netCfg.GetString("http_listener_port", NetworkServersInfo.DefaultHttpListenerPort)); | 112 | netCfg.GetString( |
113 | "http_listener_port", NetworkServersInfo.DefaultHttpListenerPort.ToString())); | ||
113 | 114 | ||
114 | IssueWarning(); | 115 | IssueWarning(); |
115 | } | 116 | } |