diff options
author | Melanie | 2009-08-21 00:25:50 +0100 |
---|---|---|
committer | Melanie | 2009-08-21 00:25:50 +0100 |
commit | 70c870972a4b534f38eaa3ae1c9b076b472f7d75 (patch) | |
tree | 69518f7bbe10910216fd16d55d4468f9898bf893 /OpenSim/Framework/GridConfig.cs | |
parent | Remove the AssetInventory server from core. It has fallen behind both (diff) | |
download | opensim-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/GridConfig.cs')
-rw-r--r-- | OpenSim/Framework/GridConfig.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/GridConfig.cs b/OpenSim/Framework/GridConfig.cs index 87fd3f0..9aa5d03 100644 --- a/OpenSim/Framework/GridConfig.cs +++ b/OpenSim/Framework/GridConfig.cs | |||
@@ -98,10 +98,10 @@ namespace OpenSim.Framework | |||
98 | "True", | 98 | "True", |
99 | false); | 99 | false); |
100 | m_configMember.addConfigurationOption("console_user", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | 100 | m_configMember.addConfigurationOption("console_user", ConfigurationOption.ConfigurationTypes.TYPE_STRING, |
101 | "Remote console access user name [Default: disabled]", "0", false); | 101 | "Remote console access user name [Default: disabled]", "", false); |
102 | 102 | ||
103 | m_configMember.addConfigurationOption("console_pass", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | 103 | m_configMember.addConfigurationOption("console_pass", ConfigurationOption.ConfigurationTypes.TYPE_STRING, |
104 | "Remote console access password [Default: disabled]", "0", false); | 104 | "Remote console access password [Default: disabled]", "", false); |
105 | 105 | ||
106 | } | 106 | } |
107 | 107 | ||