diff options
author | David Walter Seikel | 2012-03-11 04:31:18 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-03-11 04:31:18 +1000 |
commit | f2715ed85d43b7c7fa4f86e3c3b4118c4cd5ce4d (patch) | |
tree | 09b03f9c806b034090c5e9bafa96faeee0f936b0 /linden/indra/newview/llappviewer.cpp | |
parent | Just adding a TODO. (diff) | |
download | meta-impy-f2715ed85d43b7c7fa4f86e3c3b4118c4cd5ce4d.zip meta-impy-f2715ed85d43b7c7fa4f86e3c3b4118c4cd5ce4d.tar.gz meta-impy-f2715ed85d43b7c7fa4f86e3c3b4118c4cd5ce4d.tar.bz2 meta-impy-f2715ed85d43b7c7fa4f86e3c3b4118c4cd5ce4d.tar.xz |
Fix http://redmine.kokuaviewer.org/issues/1126 and as a bonus, now using blowfish to encrypt passwords.
Diffstat (limited to 'linden/indra/newview/llappviewer.cpp')
-rw-r--r-- | linden/indra/newview/llappviewer.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp index b96f6c2..e02bfc7 100644 --- a/linden/indra/newview/llappviewer.cpp +++ b/linden/indra/newview/llappviewer.cpp | |||
@@ -611,6 +611,11 @@ bool LLAppViewer::init() | |||
611 | // Always add the version to the top of the log--makes debugging easier -- MC | 611 | // Always add the version to the top of the log--makes debugging easier -- MC |
612 | llinfos << ViewerInfo::prettyInfo() << llendl; | 612 | llinfos << ViewerInfo::prettyInfo() << llendl; |
613 | 613 | ||
614 | // Always fetch the Ethernet MAC address, needed both for login | ||
615 | // and password load. Need to do this before initConfiguration(), | ||
616 | // as the password loading part needs the MAC. | ||
617 | LLUUID::getNodeID(gMACAddress); | ||
618 | |||
614 | if (!initConfiguration()) | 619 | if (!initConfiguration()) |
615 | return false; | 620 | return false; |
616 | 621 | ||
@@ -743,10 +748,6 @@ bool LLAppViewer::init() | |||
743 | return false; | 748 | return false; |
744 | } | 749 | } |
745 | 750 | ||
746 | // Always fetch the Ethernet MAC address, needed both for login | ||
747 | // and password load. | ||
748 | LLUUID::getNodeID(gMACAddress); | ||
749 | |||
750 | // Prepare for out-of-memory situations, during which we will crash on | 751 | // Prepare for out-of-memory situations, during which we will crash on |
751 | // purpose and save a dump. | 752 | // purpose and save a dump. |
752 | #if LL_WINDOWS && LL_RELEASE_FOR_DOWNLOAD && LL_USE_SMARTHEAP | 753 | #if LL_WINDOWS && LL_RELEASE_FOR_DOWNLOAD && LL_USE_SMARTHEAP |