aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llinventory/llinventory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llinventory/llinventory.cpp')
-rw-r--r--linden/indra/llinventory/llinventory.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/llinventory/llinventory.cpp b/linden/indra/llinventory/llinventory.cpp
index 4c58789..8cd0700 100644
--- a/linden/indra/llinventory/llinventory.cpp
+++ b/linden/indra/llinventory/llinventory.cpp
@@ -217,7 +217,7 @@ BOOL LLInventoryObject::importLegacyStream(std::istream& input_stream)
217 217
218// exportFile should be replaced with exportLegacyStream 218// exportFile should be replaced with exportLegacyStream
219// not sure whether exportLegacyStream(llofstream(fp)) would work, fp may need to get icramented... 219// not sure whether exportLegacyStream(llofstream(fp)) would work, fp may need to get icramented...
220BOOL LLInventoryObject::exportFile(FILE* fp, BOOL) const 220BOOL LLInventoryObject::exportFile(LLFILE* fp, BOOL) const
221{ 221{
222 char uuid_str[UUID_STR_LENGTH]; /* Flawfinder: ignore */ 222 char uuid_str[UUID_STR_LENGTH]; /* Flawfinder: ignore */
223 fprintf(fp, "\tinv_object\t0\n\t{\n"); 223 fprintf(fp, "\tinv_object\t0\n\t{\n");
@@ -520,7 +520,7 @@ BOOL LLInventoryItem::unpackMessage(LLMessageSystem* msg, const char* block, S32
520} 520}
521 521
522// virtual 522// virtual
523BOOL LLInventoryItem::importFile(FILE* fp) 523BOOL LLInventoryItem::importFile(LLFILE* fp)
524{ 524{
525 // *NOTE: Changing the buffer size will require changing the scanf 525 // *NOTE: Changing the buffer size will require changing the scanf
526 // calls below. 526 // calls below.
@@ -674,7 +674,7 @@ BOOL LLInventoryItem::importFile(FILE* fp)
674 return success; 674 return success;
675} 675}
676 676
677BOOL LLInventoryItem::exportFile(FILE* fp, BOOL include_asset_key) const 677BOOL LLInventoryItem::exportFile(LLFILE* fp, BOOL include_asset_key) const
678{ 678{
679 char uuid_str[UUID_STR_LENGTH]; /* Flawfinder: ignore */ 679 char uuid_str[UUID_STR_LENGTH]; /* Flawfinder: ignore */
680 fprintf(fp, "\tinv_item\t0\n\t{\n"); 680 fprintf(fp, "\tinv_item\t0\n\t{\n");
@@ -1429,7 +1429,7 @@ void LLInventoryCategory::unpackMessage(LLMessageSystem* msg,
1429} 1429}
1430 1430
1431// virtual 1431// virtual
1432BOOL LLInventoryCategory::importFile(FILE* fp) 1432BOOL LLInventoryCategory::importFile(LLFILE* fp)
1433{ 1433{
1434 // *NOTE: Changing the buffer size will require changing the scanf 1434 // *NOTE: Changing the buffer size will require changing the scanf
1435 // calls below. 1435 // calls below.
@@ -1495,7 +1495,7 @@ BOOL LLInventoryCategory::importFile(FILE* fp)
1495 return TRUE; 1495 return TRUE;
1496} 1496}
1497 1497
1498BOOL LLInventoryCategory::exportFile(FILE* fp, BOOL) const 1498BOOL LLInventoryCategory::exportFile(LLFILE* fp, BOOL) const
1499{ 1499{
1500 char uuid_str[UUID_STR_LENGTH]; /* Flawfinder: ignore */ 1500 char uuid_str[UUID_STR_LENGTH]; /* Flawfinder: ignore */
1501 fprintf(fp, "\tinv_category\t0\n\t{\n"); 1501 fprintf(fp, "\tinv_category\t0\n\t{\n");