diff options
author | justincc | 2011-09-16 19:56:14 +0100 |
---|---|---|
committer | justincc | 2011-09-16 19:56:14 +0100 |
commit | 30b68388378f96f83b3f9509f72664869a6c20c6 (patch) | |
tree | affc2e491bfd555bca7c5eab4875ed477f26830f | |
parent | Fix build errors on Windows by adding missing OpenSim.Services.Base reference (diff) | |
parent | Passwords could be revealed in console by pressing backspace. (diff) | |
download | opensim-SC_OLD-30b68388378f96f83b3f9509f72664869a6c20c6.zip opensim-SC_OLD-30b68388378f96f83b3f9509f72664869a6c20c6.tar.gz opensim-SC_OLD-30b68388378f96f83b3f9509f72664869a6c20c6.tar.bz2 opensim-SC_OLD-30b68388378f96f83b3f9509f72664869a6c20c6.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
-rw-r--r-- | OpenSim/Framework/Console/LocalConsole.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/LocalConsole.cs b/OpenSim/Framework/Console/LocalConsole.cs index eda41b8..05a3aee 100644 --- a/OpenSim/Framework/Console/LocalConsole.cs +++ b/OpenSim/Framework/Console/LocalConsole.cs | |||
@@ -417,7 +417,10 @@ namespace OpenSim.Framework.Console | |||
417 | SetCursorLeft(0); | 417 | SetCursorLeft(0); |
418 | y = SetCursorTop(y); | 418 | y = SetCursorTop(y); |
419 | 419 | ||
420 | System.Console.Write("{0}{1} ", prompt, cmdline); | 420 | if (echo) |
421 | System.Console.Write("{0}{1} ", prompt, cmdline); | ||
422 | else | ||
423 | System.Console.Write("{0}", prompt); | ||
421 | 424 | ||
422 | break; | 425 | break; |
423 | case ConsoleKey.End: | 426 | case ConsoleKey.End: |