summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c
diff options
context:
space:
mode:
authorrobot-contrib <[email protected]>2022-10-28 07:53:02 +0300
committerrobot-contrib <[email protected]>2022-10-28 07:53:02 +0300
commit256ab6ae39c45fc4b2795302025d4424e4f582d0 (patch)
tree71beab9013377b93b92307e322dcc5e1e28932ef /contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c
parent9b6cded108571fe7983a855c40c7545bf4b7aad2 (diff)
Update contrib/restricted/aws/aws-c-io to 0.13.5
Diffstat (limited to 'contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c')
-rw-r--r--contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c b/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c
index 27218bbb61f..3a955969849 100644
--- a/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c
+++ b/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c
@@ -314,7 +314,7 @@ int aws_tls_ctx_options_init_client_mtls_pkcs12_from_path(
struct aws_tls_ctx_options *options,
struct aws_allocator *allocator,
const char *pkcs12_path,
- struct aws_byte_cursor *pkcs_pwd) {
+ const struct aws_byte_cursor *pkcs_pwd) {
#ifdef __APPLE__
aws_tls_ctx_options_init_default_client(options, allocator);
@@ -615,7 +615,7 @@ void aws_tls_connection_options_set_callbacks(
int aws_tls_connection_options_set_server_name(
struct aws_tls_connection_options *conn_options,
struct aws_allocator *allocator,
- struct aws_byte_cursor *server_name) {
+ const struct aws_byte_cursor *server_name) {
if (conn_options->server_name != NULL) {
aws_string_destroy(conn_options->server_name);