all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Juanma Barranquero <lekktu@gmail.com>
To: Emacs developers <emacs-devel@gnu.org>
Subject: Re: Fgnutls_available_p: Avoid duplicating capabilities.
Date: Thu, 3 Nov 2022 04:31:28 +0100	[thread overview]
Message-ID: <CAAeL0SQz3XgNALigOjzwBXN4SxhKSTXzGg-uQiNLy0LRufPcPA@mail.gmail.com> (raw)
In-Reply-To: <CAAeL0SSCFA37VWrhMGyw=FYJbY1_zPkA_oktmZ-zB7=tz-mJ9w@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1317 bytes --]

Oops, braino. I accidentally moved the #ifdef HAVE_GNUTLS_EXT__DUMBFW block
inside the HAVE_GNUTLS3 one.

Corrected patch:


diff --git i/src/gnutls.c w/src/gnutls.c
index a0de0238c4..5ee5c984a7 100644
--- i/src/gnutls.c
+++ w/src/gnutls.c
@@ -2791,4 +2791,8 @@ DEFUN ("gnutls-available-p", Fgnutls_available_p,
Sgnutls_available_p, 0, 0, 0,
   capabilities = Fcons (intern("gnutls"), capabilities);

+#  ifdef HAVE_GNUTLS_EXT__DUMBFW
+  capabilities = Fcons (intern("ClientHello Padding"), capabilities);
+#  endif
+
 # ifdef HAVE_GNUTLS3
   capabilities = Fcons (intern("gnutls3"), capabilities);
@@ -2808,5 +2812,7 @@ DEFUN ("gnutls-available-p", Fgnutls_available_p,
Sgnutls_available_p, 0, 0, 0,
       if (name != NULL)
         {
-          capabilities = Fcons (intern(name), capabilities);
+          Lisp_Object cap = intern (name);
+          if (NILP (Fmemq (cap, capabilities)))
+            capabilities = Fcons (intern(name), capabilities);
         }
     }
@@ -2814,8 +2820,4 @@ DEFUN ("gnutls-available-p", Fgnutls_available_p,
Sgnutls_available_p, 0, 0, 0,
 # endif  /* HAVE_GNUTLS3 */

-#  ifdef HAVE_GNUTLS_EXT__DUMBFW
-  capabilities = Fcons (intern("ClientHello Padding"), capabilities);
-#  endif
-
 # ifdef WINDOWSNT
   Vlibrary_cache = Fcons (Fcons (Qgnutls, capabilities), Vlibrary_cache);

[-- Attachment #2: Type: text/html, Size: 1827 bytes --]

  reply	other threads:[~2022-11-03  3:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-03  3:21 Fgnutls_available_p: Avoid duplicating capabilities Juanma Barranquero
2022-11-03  3:31 ` Juanma Barranquero [this message]
2022-11-03  3:44   ` Juanma Barranquero
2022-11-03  8:05 ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAAeL0SQz3XgNALigOjzwBXN4SxhKSTXzGg-uQiNLy0LRufPcPA@mail.gmail.com \
    --to=lekktu@gmail.com \
    --cc=emacs-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.