Added ': ' to password prompt. Mantis #4851

0.7-release 0.7-release
Diva Canto 2010-07-22 04:00:24 -07:00
parent 46001809a6
commit 192781e83b
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)
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)