]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-11943 [mod_http_cache] Fix typos in warning message in aws.c
authorbaonq-me <quocbao747@gmail.com>
Mon, 22 Jul 2019 04:51:28 +0000 (11:51 +0700)
committerbaonq-me <quocbao747@gmail.com>
Mon, 22 Jul 2019 04:51:28 +0000 (11:51 +0700)
src/mod/applications/mod_http_cache/aws.c

index 8867f63e0fc2acc9b56dc81afbefdf386537c920..02ee58fde9435e5ad3f3f616ee31d570fba29042 100644 (file)
@@ -186,7 +186,7 @@ switch_status_t aws_s3_config_profile(switch_xml_t xml, http_profile_t *profile)
                        profile->aws_s3_access_key_id = switch_strip_whitespace(switch_xml_txt(id));
                        profile->secret_access_key = switch_strip_whitespace(switch_xml_txt(secret));
                        if (zstr(profile->aws_s3_access_key_id) || zstr(profile->secret_access_key)) {
-                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Missing Azure Blob credentials for profile \"%s\"\n", profile->name);
+                               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Missing AWS S3 credentials for profile \"%s\"\n", profile->name);
                                switch_safe_free(profile->aws_s3_access_key_id);
                                profile->aws_s3_access_key_id = NULL;
                                switch_safe_free(profile->secret_access_key);