mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-06-07 05:29:22 +00:00
[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)
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user