fudge it. reverting patch for now. we might have to redo LoginParams to support either the webkey -or- the password

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1517 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
jef
2007-12-05 21:30:15 +00:00
parent 8a3754d552
commit 5e99d02852
3 changed files with 7 additions and 22 deletions

View File

@@ -109,22 +109,13 @@ namespace libsecondlife.TestClient
else if (arguments["first"] != null && arguments["last"] != null && arguments["pass"] != null)
{
// Taking a single login off the command-line
account = new LoginDetails();
account.FirstName = arguments["first"];
account.LastName = arguments["last"];
account.Password = arguments["pass"];
accounts.Add(account);
}
else if (arguments["first"] != null && arguments["last"] != null && arguments["loginkey"] != null)
{
// Taking a single login off the command-line
account = new LoginDetails();
account.FirstName = arguments["first"];
account.LastName = arguments["last"];
account.WebLoginKey = arguments["loginkey"];
accounts.Add(account);
account = new LoginDetails();
account.FirstName = arguments["first"];
account.LastName = arguments["last"];
account.Password = arguments["pass"];
accounts.Add(account);
}
else
{