aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/UserConfig.cs
diff options
context:
space:
mode:
authorMelanie2009-08-21 00:25:50 +0100
committerMelanie2009-08-21 00:25:50 +0100
commit70c870972a4b534f38eaa3ae1c9b076b472f7d75 (patch)
tree69518f7bbe10910216fd16d55d4468f9898bf893 /OpenSim/Framework/UserConfig.cs
parentRemove the AssetInventory server from core. It has fallen behind both (diff)
downloadopensim-SC_OLD-70c870972a4b534f38eaa3ae1c9b076b472f7d75.zip
opensim-SC_OLD-70c870972a4b534f38eaa3ae1c9b076b472f7d75.tar.gz
opensim-SC_OLD-70c870972a4b534f38eaa3ae1c9b076b472f7d75.tar.bz2
opensim-SC_OLD-70c870972a4b534f38eaa3ae1c9b076b472f7d75.tar.xz
Fix the user and password defaults int he remote console setup
Diffstat (limited to 'OpenSim/Framework/UserConfig.cs')
-rw-r--r--OpenSim/Framework/UserConfig.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/UserConfig.cs b/OpenSim/Framework/UserConfig.cs
index b9e3665..16f265c 100644
--- a/OpenSim/Framework/UserConfig.cs
+++ b/OpenSim/Framework/UserConfig.cs
@@ -158,10 +158,10 @@ namespace OpenSim.Framework
158 "Minimum Level a user should have to login [0 default]", "0", false); 158 "Minimum Level a user should have to login [0 default]", "0", false);
159 159
160 m_configMember.addConfigurationOption("console_user", ConfigurationOption.ConfigurationTypes.TYPE_STRING, 160 m_configMember.addConfigurationOption("console_user", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
161 "Remote console access user name [Default: disabled]", "0", false); 161 "Remote console access user name [Default: disabled]", "", false);
162 162
163 m_configMember.addConfigurationOption("console_pass", ConfigurationOption.ConfigurationTypes.TYPE_STRING, 163 m_configMember.addConfigurationOption("console_pass", ConfigurationOption.ConfigurationTypes.TYPE_STRING,
164 "Remote console access password [Default: disabled]", "0", false); 164 "Remote console access password [Default: disabled]", "", false);
165 165
166 } 166 }
167 167