aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llstartup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llstartup.cpp')
-rw-r--r--linden/indra/newview/llstartup.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp
index 3f02f6a..2623b05 100644
--- a/linden/indra/newview/llstartup.cpp
+++ b/linden/indra/newview/llstartup.cpp
@@ -568,7 +568,10 @@ BOOL idle_startup()
568#endif // LL_LINUX 568#endif // LL_LINUX
569 569
570 std::ostringstream codec; 570 std::ostringstream codec;
571 codec << "[Second Life " << LL_VERSION_MAJOR << "." << LL_VERSION_MINOR << "." << LL_VERSION_PATCH << "." << LL_VERSION_BUILD << "]"; 571 codec << "[Second Life ";
572 codec << "(" << gChannelName << ")";
573 codec << " - " << LL_VERSION_MAJOR << "." << LL_VERSION_MINOR << "." << LL_VERSION_PATCH << "." << LL_VERSION_BUILD;
574 codec << "]";
572 LLMozLib::getInstance()->setBrowserAgentId( codec.str() ); 575 LLMozLib::getInstance()->setBrowserAgentId( codec.str() );
573 #endif 576 #endif
574 577
@@ -2633,7 +2636,7 @@ void update_dialog_callback(S32 option, void *userdata)
2633#if !LL_RELEASE_FOR_DOWNLOAD 2636#if !LL_RELEASE_FOR_DOWNLOAD
2634 if (option == 2) 2637 if (option == 2)
2635 { 2638 {
2636 LLStartUp::setStartupState( STATE_WORLD_INIT ); 2639 LLStartUp::setStartupState( STATE_LOGIN_AUTH_INIT );
2637 return; 2640 return;
2638 } 2641 }
2639#endif 2642#endif
@@ -2649,7 +2652,7 @@ void update_dialog_callback(S32 option, void *userdata)
2649 } 2652 }
2650 else 2653 else
2651 { 2654 {
2652 LLStartUp::setStartupState( STATE_WORLD_INIT ); 2655 LLStartUp::setStartupState( STATE_LOGIN_AUTH_INIT );
2653 } 2656 }
2654 return; 2657 return;
2655 } 2658 }