diff options
author | Diva Canto | 2010-07-22 04:00:24 -0700 |
---|---|---|
committer | Diva Canto | 2010-07-22 04:01:55 -0700 |
commit | 192781e83be83d0a26a6ea377d9dd07cd76892d8 (patch) | |
tree | 4f9bb1b14cbfdf1c21e5f13591db114796f39c15 /OpenSim | |
parent | Adding sample configuration to previous patch (diff) | |
download | opensim-SC_OLD-192781e83be83d0a26a6ea377d9dd07cd76892d8.zip opensim-SC_OLD-192781e83be83d0a26a6ea377d9dd07cd76892d8.tar.gz opensim-SC_OLD-192781e83be83d0a26a6ea377d9dd07cd76892d8.tar.bz2 opensim-SC_OLD-192781e83be83d0a26a6ea377d9dd07cd76892d8.tar.xz |
Added ': ' to password prompt. Mantis #48510.7-release
Diffstat (limited to 'OpenSim')
-rwxr-xr-x | OpenSim/Framework/Console/ConsoleBase.cs | 2 |
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) |