diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmessage/llassetstorage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llmessage/llassetstorage.cpp b/linden/indra/llmessage/llassetstorage.cpp index 13b1525..a6077e5 100644 --- a/linden/indra/llmessage/llassetstorage.cpp +++ b/linden/indra/llmessage/llassetstorage.cpp | |||
@@ -318,7 +318,7 @@ LLAssetStorage::~LLAssetStorage() | |||
318 | 318 | ||
319 | void LLAssetStorage::setUpstream(const LLHost &upstream_host) | 319 | void LLAssetStorage::setUpstream(const LLHost &upstream_host) |
320 | { | 320 | { |
321 | llinfos << "AssetStorage: Setting upstream provider to " << upstream_host << llendl; | 321 | LL_DEBUGS("AppInit") << "AssetStorage: Setting upstream provider to " << upstream_host << LL_ENDL; |
322 | 322 | ||
323 | mUpstreamHost = upstream_host; | 323 | mUpstreamHost = upstream_host; |
324 | } | 324 | } |
@@ -1242,7 +1242,7 @@ void LLAssetStorage::legacyGetDataCallback(LLVFS *vfs, const LLUUID &uuid, LLAss | |||
1242 | uuid.toString(uuid_str); | 1242 | uuid.toString(uuid_str); |
1243 | snprintf(filename,sizeof(filename),"%s.%s",gDirUtilp->getExpandedFilename(LL_PATH_CACHE,uuid_str).c_str(),LLAssetType::lookup(type)); /* Flawfinder: ignore */ | 1243 | snprintf(filename,sizeof(filename),"%s.%s",gDirUtilp->getExpandedFilename(LL_PATH_CACHE,uuid_str).c_str(),LLAssetType::lookup(type)); /* Flawfinder: ignore */ |
1244 | 1244 | ||
1245 | FILE* fp = LLFile::fopen(filename, "wb"); /* Flawfinder: ignore */ | 1245 | LLFILE* fp = LLFile::fopen(filename, "wb"); /* Flawfinder: ignore */ |
1246 | if (fp) | 1246 | if (fp) |
1247 | { | 1247 | { |
1248 | const S32 buf_size = 65536; | 1248 | const S32 buf_size = 65536; |