diff options
author | Jacek Antonelli | 2008-08-15 23:45:06 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:06 -0500 |
commit | d5be8b344959d188ec942fce477286aa6de34a9e (patch) | |
tree | 7fe25e5fda87459d0f053d32c926de25721de38f /linden/indra/newview/llstartup.cpp | |
parent | Second Life viewer sources 1.18.2.0 (diff) | |
download | meta-impy-d5be8b344959d188ec942fce477286aa6de34a9e.zip meta-impy-d5be8b344959d188ec942fce477286aa6de34a9e.tar.gz meta-impy-d5be8b344959d188ec942fce477286aa6de34a9e.tar.bz2 meta-impy-d5be8b344959d188ec942fce477286aa6de34a9e.tar.xz |
Second Life viewer sources 1.18.2.1
Diffstat (limited to 'linden/indra/newview/llstartup.cpp')
-rw-r--r-- | linden/indra/newview/llstartup.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp index 208bb7c..7c76634 100644 --- a/linden/indra/newview/llstartup.cpp +++ b/linden/indra/newview/llstartup.cpp | |||
@@ -565,7 +565,10 @@ BOOL idle_startup() | |||
565 | #endif // LL_LINUX | 565 | #endif // LL_LINUX |
566 | 566 | ||
567 | std::ostringstream codec; | 567 | std::ostringstream codec; |
568 | codec << "[Second Life " << LL_VERSION_MAJOR << "." << LL_VERSION_MINOR << "." << LL_VERSION_PATCH << "." << LL_VERSION_BUILD << "]"; | 568 | codec << "[Second Life "; |
569 | codec << "(" << gChannelName << ")"; | ||
570 | codec << " - " << LL_VERSION_MAJOR << "." << LL_VERSION_MINOR << "." << LL_VERSION_PATCH << "." << LL_VERSION_BUILD; | ||
571 | codec << "]"; | ||
569 | LLMozLib::getInstance()->setBrowserAgentId( codec.str() ); | 572 | LLMozLib::getInstance()->setBrowserAgentId( codec.str() ); |
570 | #endif | 573 | #endif |
571 | 574 | ||