aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Console
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-07-23 22:37:10 +0100
committerJustin Clark-Casey (justincc)2010-07-23 22:37:10 +0100
commit18117d8c9acc0df92608e6d920b901cb5c18bc37 (patch)
tree798b4f2697115fd774c9d436592fc15eb86b32a9 /OpenSim/Framework/Console
parentMerge branch '0.7-post-fixes' of ssh://opensimulator.org/var/git/opensim into... (diff)
parentFlipped the flavour on post-fixes to Post_Fixes. (diff)
downloadopensim-SC_OLD-18117d8c9acc0df92608e6d920b901cb5c18bc37.zip
opensim-SC_OLD-18117d8c9acc0df92608e6d920b901cb5c18bc37.tar.gz
opensim-SC_OLD-18117d8c9acc0df92608e6d920b901cb5c18bc37.tar.bz2
opensim-SC_OLD-18117d8c9acc0df92608e6d920b901cb5c18bc37.tar.xz
Merge branch '0.7-post-fixes' of ssh://opensimulator.org/var/git/opensim into 0.7-post-fixes
Diffstat (limited to 'OpenSim/Framework/Console')
-rwxr-xr-xOpenSim/Framework/Console/ConsoleBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/ConsoleBase.cs b/OpenSim/Framework/Console/ConsoleBase.cs
index b70d1db..aab920b 100755
--- a/OpenSim/Framework/Console/ConsoleBase.cs
+++ b/OpenSim/Framework/Console/ConsoleBase.cs
@@ -118,7 +118,7 @@ namespace OpenSim.Framework.Console
118 // (Done with no echo and suitable for passwords) 118 // (Done with no echo and suitable for passwords)
119 public string PasswdPrompt(string p) 119 public string PasswdPrompt(string p)
120 { 120 {
121 return ReadLine(p, false, false); 121 return ReadLine(String.Format("{0}: ", p), false, false);
122 } 122 }
123 123
124 public virtual string ReadLine(string p, bool isCommand, bool e) 124 public virtual string ReadLine(string p, bool isCommand, bool e)