From 44385800cf765f7c8c0a0aba560d615f5f465403 Mon Sep 17 00:00:00 2001 From: Tedd Hansen Date: Thu, 14 Feb 2008 10:04:14 +0000 Subject: [PATCH] Changed UserServer create user password input to cleartext so we can see what the all the fuzz/blur is about. Make sure that you hide your monitor and that there are no black vans with large antennas parked outside while you type the password. Actually, turn off your monitor while typing password. Then press reset button on your computer. --- OpenSim/Grid/UserServer/Main.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index b093d02b6e..8c05d862dc 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs @@ -143,7 +143,8 @@ namespace OpenSim.Grid.UserServer tempfirstname = m_console.CmdPrompt("First name"); templastname = m_console.CmdPrompt("Last name"); - tempMD5Passwd = m_console.PasswdPrompt("Password"); + //tempMD5Passwd = m_console.PasswdPrompt("Password"); + tempMD5Passwd = m_console.CmdPrompt("Password"); regX = Convert.ToUInt32(m_console.CmdPrompt("Start Region X")); regY = Convert.ToUInt32(m_console.CmdPrompt("Start Region Y"));