mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-19 02:35:13 +00:00
commit
64146f69a4
@ -659,7 +659,7 @@ size_t S3fsCurl::HeaderCallback(void* data, size_t blockSize, size_t numBlocks,
|
|||||||
// Force to lower, only "x-amz"
|
// Force to lower, only "x-amz"
|
||||||
string lkey = key;
|
string lkey = key;
|
||||||
transform(lkey.begin(), lkey.end(), lkey.begin(), static_cast<int (*)(int)>(std::tolower));
|
transform(lkey.begin(), lkey.end(), lkey.begin(), static_cast<int (*)(int)>(std::tolower));
|
||||||
if(lkey.substr(0, 5) == "x-amz"){
|
if(lkey.compare(0, 5, "x-amz") == 0){
|
||||||
key = lkey;
|
key = lkey;
|
||||||
}
|
}
|
||||||
string value;
|
string value;
|
||||||
|
Loading…
Reference in New Issue
Block a user