diff options
author | David Seikel | 2011-03-03 21:50:24 +1000 |
---|---|---|
committer | David Seikel | 2011-03-03 21:50:24 +1000 |
commit | ec5012c0a76a606c43e5f9fcf4a959251a503f6d (patch) | |
tree | e8a3192b093a042a0b27ea154886453c00f06364 /linden/indra/newview/llviewerstats.cpp | |
parent | One half of a crude attempt at providing IRC support. (diff) | |
download | meta-impy-ec5012c0a76a606c43e5f9fcf4a959251a503f6d.zip meta-impy-ec5012c0a76a606c43e5f9fcf4a959251a503f6d.tar.gz meta-impy-ec5012c0a76a606c43e5f9fcf4a959251a503f6d.tar.bz2 meta-impy-ec5012c0a76a606c43e5f9fcf4a959251a503f6d.tar.xz |
Privacy issue - Don't send private data across the 'net.
Yes, this makes the meta-impy viewer non compliant with LL's TPVP, we don't care this is a viewer for the meta grid.
We care about privacy. We have our own effective methods of implementing bans.
Diffstat (limited to 'linden/indra/newview/llviewerstats.cpp')
-rw-r--r-- | linden/indra/newview/llviewerstats.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/linden/indra/newview/llviewerstats.cpp b/linden/indra/newview/llviewerstats.cpp index 607f871..a7bbee8 100644 --- a/linden/indra/newview/llviewerstats.cpp +++ b/linden/indra/newview/llviewerstats.cpp | |||
@@ -714,9 +714,7 @@ void send_stats() | |||
714 | system["ram"] = (S32) gSysMemory.getPhysicalMemoryKB(); | 714 | system["ram"] = (S32) gSysMemory.getPhysicalMemoryKB(); |
715 | system["os"] = LLAppViewer::instance()->getOSInfo().getOSStringSimple(); | 715 | system["os"] = LLAppViewer::instance()->getOSInfo().getOSStringSimple(); |
716 | system["cpu"] = gSysCPU.getCPUString(); | 716 | system["cpu"] = gSysCPU.getCPUString(); |
717 | std::string macAddressString = llformat("%02x-%02x-%02x-%02x-%02x-%02x", | 717 | std::string macAddressString = llformat("%02x-%02x-%02x-%02x-%02x-%02x", 0,1,2,3,4,5); // Hell no don't seand the MAC across the 'net. Bad LL. |
718 | gMACAddress[0],gMACAddress[1],gMACAddress[2], | ||
719 | gMACAddress[3],gMACAddress[4],gMACAddress[5]); | ||
720 | system["mac_address"] = macAddressString; | 718 | system["mac_address"] = macAddressString; |
721 | system["serial_number"] = LLAppViewer::instance()->getSerialNumber(); | 719 | system["serial_number"] = LLAppViewer::instance()->getSerialNumber(); |
722 | std::string gpu_desc = llformat( | 720 | std::string gpu_desc = llformat( |