libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

commit 136e2e8769eb8a11ef71a3f38066993a2db0dec9
parent f6be94488bc2abba9790d26ceab6a8555f7147e6
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date:   Sat,  6 Dec 2025 21:03:23 +0100

OpenSSL backend: fixed harmless typos

Diffstat:
Msrc/mhd2/tls_open_conn_data.h | 6+++---
Msrc/mhd2/tls_open_daemon_data.h | 4++--
Msrc/mhd2/tls_open_funcs.c | 6+++---
3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/mhd2/tls_open_conn_data.h b/src/mhd2/tls_open_conn_data.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later OR (GPL-2.0-or-later WITH eCos-exception-2.0) */ /* This file is part of GNU libmicrohttpd. - Copyright (C) 2024 Evgeny Grin (Karlson2k) + Copyright (C) 2024-2025 Evgeny Grin (Karlson2k) GNU libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -38,7 +38,7 @@ /** * @file src/mhd2/tls_open_conn_data.h - * @brief The definition of OpenSSL daemon-specific data structures + * @brief The definition of OpenSSL connection-specific data structures * @author Karlson2k (Evgeny Grin) */ @@ -48,7 +48,7 @@ #include "mhd_sys_options.h" #ifndef MHD_SUPPORT_OPENSSL -#error This header can be used only if GnuTLS is enabled +#error This header can be used only if OpenSSL is enabled #endif #include "tls_open_tls_lib.h" diff --git a/src/mhd2/tls_open_daemon_data.h b/src/mhd2/tls_open_daemon_data.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later OR (GPL-2.0-or-later WITH eCos-exception-2.0) */ /* This file is part of GNU libmicrohttpd. - Copyright (C) 2024 Evgeny Grin (Karlson2k) + Copyright (C) 2024-2025 Evgeny Grin (Karlson2k) GNU libmicrohttpd is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -48,7 +48,7 @@ #include "mhd_sys_options.h" #ifndef MHD_SUPPORT_OPENSSL -#error This header can be used only if GnuTLS is enabled +#error This header can be used only if OpenSSL is enabled #endif #include "tls_open_tls_lib.h" diff --git a/src/mhd2/tls_open_funcs.c b/src/mhd2/tls_open_funcs.c @@ -38,7 +38,7 @@ /** * @file src/mhd2/tls_open_funcs.c - * @brief The implementation of GnuTLS wrapper functions + * @brief The implementation of OpenSSL wrapper functions * @author Karlson2k (Evgeny Grin) */ @@ -155,7 +155,7 @@ mhd_tls_open_is_inited_fine (void) * error code otherwise */ static MHD_FN_PAR_NONNULL_ALL_ MHD_FN_MUST_CHECK_RESULT_ enum MHD_StatusCode -check_app_tls_sessings (struct MHD_Daemon *restrict d, +check_app_tls_settings (struct MHD_Daemon *restrict d, bool sk_edge_trigg, struct DaemonOptions *restrict s) { @@ -872,7 +872,7 @@ mhd_tls_open_daemon_init (struct MHD_Daemon *restrict d, /* Successful initialisation must be checked earlier */ mhd_assert (openssl_lib_inited); - res = check_app_tls_sessings (d, sk_edge_trigg, s); + res = check_app_tls_settings (d, sk_edge_trigg, s); if (MHD_SC_OK != res) return res;