diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/primbackup.cpp | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/linden/indra/newview/primbackup.cpp b/linden/indra/newview/primbackup.cpp index 7f050a0..f7f1345 100644 --- a/linden/indra/newview/primbackup.cpp +++ b/linden/indra/newview/primbackup.cpp | |||
@@ -7,7 +7,7 @@ | |||
7 | #include <fstream> | 7 | #include <fstream> |
8 | #include <sstream> | 8 | #include <sstream> |
9 | 9 | ||
10 | // linden library includes | 10 | // viewer library includes |
11 | #include "llfilepicker.h" | 11 | #include "llfilepicker.h" |
12 | #include "indra_constants.h" | 12 | #include "indra_constants.h" |
13 | #include "llsdserialize.h" | 13 | #include "llsdserialize.h" |
@@ -423,11 +423,18 @@ void primbackup::exportworker(void *userdata) | |||
423 | // Exporting object textures (or other content) from Second Life | 423 | // Exporting object textures (or other content) from Second Life |
424 | // without checking creator is a violation of the Second Life | 424 | // without checking creator is a violation of the Second Life |
425 | // Policy on Third-Party Viewers and Terms of Service. | 425 | // Policy on Third-Party Viewers and Terms of Service. |
426 | if(gHippoGridManager->getConnectedGrid()->isSecondLife()) | 426 | // Coz LL are paranoid about other grids getting useful content. |
427 | { | 427 | // This is probably illegal with respect to open source content, |
428 | primbackup::getInstance()->export_state=EXPORT_DONE; | 428 | // it usually has licenses designed to prevent third parties (LL) |
429 | return; | 429 | // from restricting copying. |
430 | } | 430 | // This is the meta-impy viewer, we don't care about LL's broken policies |
431 | // and we really don't care for LL imposing their own restrictions | ||
432 | // on content that the content author did not want. | ||
433 | // if(gHippoGridManager->getConnectedGrid()->isSecondLife()) | ||
434 | // { | ||
435 | // primbackup::getInstance()->export_state=EXPORT_DONE; | ||
436 | // return; | ||
437 | // } | ||
431 | 438 | ||
432 | if(primbackup::getInstance()->m_nexttextureready==false) | 439 | if(primbackup::getInstance()->m_nexttextureready==false) |
433 | return; | 440 | return; |