commit 98509bb8563b51dff615835057132c3bc4f07df0
parent 136e2e8769eb8a11ef71a3f38066993a2db0dec9
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date: Sat, 6 Dec 2025 21:04:03 +0100
GnuTLS backend: fixed harmless typos
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/mhd2/tls_gnu_conn_data.h b/src/mhd2/tls_gnu_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_gnu_conn_data.h
- * @brief The definition of GnuTLS daemon-specific data structures
+ * @brief The definition of GnuTLS connection-specific data structures
* @author Karlson2k (Evgeny Grin)
*/
diff --git a/src/mhd2/tls_gnu_funcs.c b/src/mhd2/tls_gnu_funcs.c
@@ -175,7 +175,7 @@ mhd_tls_gnu_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,
struct DaemonOptions *restrict s)
{
mhd_assert (MHD_TLS_BACKEND_NONE != s->tls);
@@ -457,7 +457,7 @@ mhd_tls_gnu_daemon_init3 (struct MHD_Daemon *restrict d,
/* Successful initialisation must be checked earlier */
mhd_assert (gnutls_lib_inited);
- res = check_app_tls_sessings (d, s);
+ res = check_app_tls_settings (d, s);
if (MHD_SC_OK != res)
return res;