Added ': ' to password prompt. Mantis #4851

prebuild-update
Diva Canto 2010-07-22 04:00:24 -07:00
parent 7b471bb21c
commit 0c0ac65d38
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ namespace OpenSim.Framework.Console
// (Done with no echo and suitable for passwords) // (Done with no echo and suitable for passwords)
public string PasswdPrompt(string p) public string PasswdPrompt(string p)
{ {
return ReadLine(p, false, false); return ReadLine(String.Format("{0}: ", p), false, false);
} }
public virtual string ReadLine(string p, bool isCommand, bool e) public virtual string ReadLine(string p, bool isCommand, bool e)