summaryrefslogtreecommitdiff
path: root/indra/viewer_components
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2012-11-13 11:57:14 -0500
committerOz Linden <oz@lindenlab.com>2012-11-13 11:57:14 -0500
commitbe210914f4e9081f021cc1ad3b671765aba79b61 (patch)
tree006e4ec827b8c1b3cf6042c08e12aadf48f43943 /indra/viewer_components
parent7e779a29c142feaa34a30dff39b72d0ae7c0fdc3 (diff)
parentd8f081cf1b18ddb5f0412b21f4d36bfce6abae19 (diff)
merge changes for DRTVWR-238
Diffstat (limited to 'indra/viewer_components')
-rw-r--r--indra/viewer_components/login/lllogin.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/viewer_components/login/lllogin.cpp b/indra/viewer_components/login/lllogin.cpp
index d480b63094..bdcb068200 100644
--- a/indra/viewer_components/login/lllogin.cpp
+++ b/indra/viewer_components/login/lllogin.cpp
@@ -271,6 +271,16 @@ void LLLogin::Impl::login_(LLCoros::self& self, std::string uri, LLSD login_para
}
return; // Done!
}
+
+ /* Sometimes we end with "Started" here. Slightly slow server?
+ * Seems to be ok to just skip it. Otherwise we'd error out and crash in the if below.
+ */
+ if( status == "Started")
+ {
+ LL_DEBUGS("LLLogin") << mAuthResponse << LL_ENDL;
+ continue;
+ }
+
// If we don't recognize status at all, trouble
if (! (status == "CURLError"
|| status == "XMLRPCError"