X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=ssl.c;h=afd9af450c193689b22b7cdf87c0be559f513782;hb=4ad9657a5d71fb6edf7322167097fa33dc1d71b4;hp=e07397f9dd486a809d5af528cd215baf92ac4fac;hpb=85bc700695d99d5858dbaa1448251e48df9ce747;p=privoxy.git diff --git a/ssl.c b/ssl.c index e07397f9..afd9af45 100644 --- a/ssl.c +++ b/ssl.c @@ -7,7 +7,7 @@ * using mbedTLS. * * Copyright : Written by and Copyright (c) 2017-2020 Vaclav Svec. FIT CVUT. - * Copyright (C) 2018-2020 by Fabian Keil + * Copyright (C) 2018-2021 by Fabian Keil * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General @@ -1977,7 +1977,7 @@ static int *get_ciphersuites_from_string(const char *parameter_string) size_t parameter_len = strlen(parameter_string); ciphersuites_string = zalloc_or_die(parameter_len + 1); - strncpy(ciphersuites_string, parameter_string, parameter_len); + strlcpy(ciphersuites_string, parameter_string, parameter_len + 1); ciphersuites_index = ciphersuites_string; while (*ciphersuites_index)