[mod_http_cache] Fix the query string not included for HTTP PUT requests to s3
This commit is contained in:
parent
08c2bf94a7
commit
dd1e0c1605
|
@ -47,7 +47,7 @@
|
|||
*/
|
||||
static char *hmac256(char* buffer, unsigned int buffer_length, const char* key, unsigned int key_length, const char* message)
|
||||
{
|
||||
if (zstr(key) || zstr(message) || buffer_length < SHA256_DIGEST_LENGTH) {
|
||||
if (!key || zstr(message) || buffer_length < SHA256_DIGEST_LENGTH) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue