* Fixed LLSDString.AsBoolean() to properly recognize false values

* Hardened up the login process to deal with broken login servers
* Fixed a command-line argument parsing bug in importprimscript

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1595 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-01-04 22:51:24 +00:00
parent 7ef84a2aff
commit f708c6284b
5 changed files with 55 additions and 24 deletions

View File

@@ -29,7 +29,7 @@ namespace importprimscript
static void Main(string[] args)
{
if (args.Length != 8)
if (args.Length != 8 && args.Length != 9)
{
Console.WriteLine("Usage: importprimscript.exe [firstname] [lastname] [password] " +
"[loginuri] [Simulator] [x] [y] [z] [input.primscript]" +