summaryrefslogtreecommitdiff
path: root/src/gnutls.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2019-08-23 10:38:14 +0300
committerEli Zaretskii <eliz@gnu.org>2019-08-23 10:38:14 +0300
commitc3753a322a73aaad31f155a2045cb0d030815ed2 (patch)
tree18b70b7e447fe03e5661ea6d78414e15612303de /src/gnutls.c
parentaae9ac275c96438b99d977a6ad6726f5b43d3204 (diff)
downloademacs-c3753a322a73aaad31f155a2045cb0d030815ed2.tar.gz
Fix recent changes in gnutls.c
* src/gnutls.c: Fix typos that broke the MS-Windows build. (Fgnutls_peer_status_warning_describe): Fix incomplete error message string.
Diffstat (limited to 'src/gnutls.c')
-rw-r--r--src/gnutls.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gnutls.c b/src/gnutls.c
index ce977d901c6..db452e01aa6 100644
--- a/src/gnutls.c
+++ b/src/gnutls.c
@@ -163,7 +163,7 @@ DEF_DLL_FN (int, gnutls_x509_crt_check_hostname,
DEF_DLL_FN (int, gnutls_x509_crt_check_issuer,
(gnutls_x509_crt_t, gnutls_x509_crt_t));
DEF_DLL_FN (void, gnutls_x509_crt_deinit, (gnutls_x509_crt_t));
-DEF_DLL_DN (int, gnutls_x509_crt_export,
+DEF_DLL_FN (int, gnutls_x509_crt_export,
(gnutls_x509_crt_t, gnutls_x509_crt_fmt_t, void *, size_t *));
DEF_DLL_FN (int, gnutls_x509_crt_import,
(gnutls_x509_crt_t, const gnutls_datum_t *,
@@ -350,7 +350,7 @@ init_gnutls_functions (void)
LOAD_DLL_FN (library, gnutls_x509_crt_get_expiration_time);
LOAD_DLL_FN (library, gnutls_x509_crt_get_dn);
LOAD_DLL_FN (library, gnutls_x509_crt_get_pk_algorithm);
- LOAD_DLL_FN (library, gnutls_x509_crt_print)
+ LOAD_DLL_FN (library, gnutls_x509_crt_print);
LOAD_DLL_FN (library, gnutls_pk_algorithm_get_name);
LOAD_DLL_FN (library, gnutls_pk_bits_to_sec_param);
LOAD_DLL_FN (library, gnutls_x509_crt_get_issuer_unique_id);
@@ -464,7 +464,7 @@ init_gnutls_functions (void)
# define gnutls_mac_get_name fn_gnutls_mac_get_name
# define gnutls_compression_get fn_gnutls_compression_get
# define gnutls_compression_get_name fn_gnutls_compression_get_name
-# define gnutls_safe_renegotiation_status fn_gnutls_safe_renegotiation_status;
+# define gnutls_safe_renegotiation_status fn_gnutls_safe_renegotiation_status
# define gnutls_pk_algorithm_get_name fn_gnutls_pk_algorithm_get_name
# define gnutls_pk_bits_to_sec_param fn_gnutls_pk_bits_to_sec_param
# define gnutls_priority_set_direct fn_gnutls_priority_set_direct
@@ -1321,7 +1321,7 @@ DEFUN ("gnutls-peer-status-warning-describe", Fgnutls_peer_status_warning_descri
return build_string ("certificate revocation data have a future issue date");
if (EQ (status_symbol, intern (":signer-constraints-failure")))
- return build_string ("certificate ");
+ return build_string ("certificate signer constraints were violated");
if (EQ (status_symbol, intern (":purpose-mismatch")))
return build_string ("certificate does not match the intended purpose");