Compare idiomatically

This commit is contained in:
Andrew Gaul 2014-05-13 03:57:16 -07:00
parent cbc057bca7
commit 801ca0c2d3

View File

@ -659,7 +659,7 @@ size_t S3fsCurl::HeaderCallback(void* data, size_t blockSize, size_t numBlocks,
// Force to lower, only "x-amz"
string lkey = key;
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;
}
string value;