From unknown Fri Aug 15 12:52:50 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#20465 <20465@debbugs.gnu.org> To: bug#20465 <20465@debbugs.gnu.org> Subject: Status: 24.4; GnuTLS integration seems faulty Reply-To: bug#20465 <20465@debbugs.gnu.org> Date: Fri, 15 Aug 2025 19:52:50 +0000 retitle 20465 24.4; GnuTLS integration seems faulty reassign 20465 emacs submitter 20465 Leandro Facchinetti severity 20465 normal tag 20465 fixed thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 29 16:30:25 2015 Received: (at submit) by debbugs.gnu.org; 29 Apr 2015 20:30:25 +0000 Received: from localhost ([127.0.0.1]:56726 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYch-0001Gz-QS for submit@debbugs.gnu.org; Wed, 29 Apr 2015 16:30:25 -0400 Received: from eggs.gnu.org ([208.118.235.92]:57502) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnXlH-0008Oo-Cc for submit@debbugs.gnu.org; Wed, 29 Apr 2015 15:35:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YnXlA-0003BH-LH for submit@debbugs.gnu.org; Wed, 29 Apr 2015 15:35:06 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: * X-Spam-Status: No, score=1.8 required=5.0 tests=AC_HTML_NONSENSE_TAGS, BAYES_50, T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:41916) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YnXlA-0003AL-I9 for submit@debbugs.gnu.org; Wed, 29 Apr 2015 15:35:04 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42769) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YnXl8-00083a-Vv for bug-gnu-emacs@gnu.org; Wed, 29 Apr 2015 15:35:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YnXl4-00033q-6e for bug-gnu-emacs@gnu.org; Wed, 29 Apr 2015 15:35:02 -0400 Received: from www.leafac.com ([104.236.80.74]:59156) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YnXl4-00033g-0m for bug-gnu-emacs@gnu.org; Wed, 29 Apr 2015 15:34:58 -0400 Received: from leafac (c-73-200-221-142.hsd1.md.comcast.net [73.200.221.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: me@leafac.com) by www.leafac.com (Postfix) with ESMTPSA id 3FF9366064 for ; Wed, 29 Apr 2015 15:34:57 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=www.leafac.com; s=mail; t=1430336097; bh=ezRgoBINXcfW5EC+5BwvDhwa+p4V2FJQ1h3r2bXNd00=; h=From:To:Subject:Date:From; b=D5ZKVl4uk2ze+YcneaYGz+28BjkkMyhOF39+gaBFptZ6+b0LdJ+9Qo93JgZUH0xBJ kJTtbeaeBtX7Xmejdo+I95TDx0hQ215zMiM4qLyqWl/WJ+ipac9EbHXzuh5b4DHgx5 WGOK4SYzuvMxge0bp2NeE/6xC2DxJTaGYTMc8vYs= From: Leandro Facchinetti To: bug-gnu-emacs@gnu.org Subject: 24.4; GnuTLS integration seems faulty Date: Wed, 29 Apr 2015 15:34:56 -0400 Message-ID: <87r3r24tjz.fsf@leafac.com> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -3.3 (---) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Wed, 29 Apr 2015 16:30:20 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) I'm trying to retrieve a URL hosted on CloudFlare with Universal SSL enabled (more about what's that here: https://blog.cloudflare.com/introducing-universal-ssl/). The following command is the one causing the issue: (url-retrieve-synchronously "https://kill-the-newsletter.com") As you can see on the "Recent messages" section of this bug report, I'm getting back a -12 error, which by the GnuTLS manual means "GNUTLS_E_FATAL_ALERT_RECEIVED: A TLS fatal alert has been received." But then I tried connecting with the server using the `gnutls-cli' tool provided by GnuTLS itself. From the command line, I ran: $ gnutls-cli kill-the-newsletter.com And it worked. This leads me to conclude that somehow `gnutls.c' in Emacs is calling the library in a way it shouldn't. I'd love to help fix this myself, but I'm not experienced with C programming outside the assignments I did as an undergrad a few years ago, and I don't understand the internals of Emacs and GnuTLS very well. So I ask you to please guide me on the right direction. Thanks! In GNU Emacs 24.4.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.16.2) of 2015-04-17 on andyrtr Windowing system distributor `The X.Org Foundation', version 11.0.11701000 Configured using: `configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib --localstatedir=/var --with-x-toolkit=gtk3 --with-xft 'CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4' CPPFLAGS=-D_FORTIFY_SOURCE=2 LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro' Important settings: value of $LANG: en_US.utf8 locale-coding-system: utf-8-unix Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Recent input: M-: C-g M-: ( C-y SPC " h t t p s : / / k i l l - t h e - n e w s l e t t e r . c o m " ) q M-: C-S-e M-w C-g M-x e m a s c s - r e p o r e p o r t Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Quit Contacting host: kill-the-newsletter.com:443 gnutls.c: [0] (Emacs) fatal error: A TLS fatal alert has been received. gnutls.c: [0] (Emacs) Received alert: Internal error gnutls.el: (err=[-12] A TLS fatal alert has been received.) boot: (:priority NORMAL :hostname kill-the-newsletter.com :loglevel 0 :min-prime-bits 256 :trustfiles (/etc/ssl/certs/ca-certificates.crt) :crlfiles nil :keylist nil :verify-flags nil :verify-error nil :callbacks nil) Entering debugger... Back to top level. Quit Making completion list... Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message format-spec rfc822 mml mml-sec mm-decode mm-bodies mm-encode mailabbrev gmm-utils mailheader sendmail mail-utils help-mode easymenu debug gnutls cl-loaddefs cl-lib network-stream starttls url-http tls mail-parse rfc2231 rfc2047 rfc2045 ietf-drums url-gw url-cache url-auth url url-proxy url-privacy url-expand url-methods url-history url-cookie url-domsuf url-util url-parse auth-source eieio byte-opt bytecomp byte-compile cconv eieio-core gnus-util mm-util help-fns mail-prsvr password-cache url-vars mailcap time-date tooltip electric uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode prog-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind gfilenotify dynamic-setting system-font-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty emacs) Memory information: ((conses 16 91117 5130) (symbols 48 19938 0) (miscs 40 45 118) (strings 32 18371 4972) (string-bytes 1 493143) (vectors 16 11427) (vector-slots 8 411227 6068) (floats 8 74 213) (intervals 56 245 1) (buffers 960 13) (heap 1024 38752 1009)) -- Leandro Facchinetti https://www.leafac.com GPG key: 3DF3D583 From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 29 16:36:48 2015 Received: (at 20465) by debbugs.gnu.org; 29 Apr 2015 20:36:48 +0000 Received: from localhost ([127.0.0.1]:56731 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYit-0001Qi-Ft for submit@debbugs.gnu.org; Wed, 29 Apr 2015 16:36:47 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:53078) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYir-0001QX-5L for 20465@debbugs.gnu.org; Wed, 29 Apr 2015 16:36:46 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3lcWpg625bz3hhgK; Wed, 29 Apr 2015 22:36:43 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3lcWpg4lLKzvdWR; Wed, 29 Apr 2015 22:36:43 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id lPt3n0kizXZZ; Wed, 29 Apr 2015 22:36:42 +0200 (CEST) X-Auth-Info: SJ9Z0PKZ+rW3+a49onAIQmZX/HgF8bJH1CKyA3Lic/523pELZyvl0kma8eiA6JBC Received: from igel.home (ppp-93-104-60-157.dynamic.mnet-online.de [93.104.60.157]) by mail.mnet-online.de (Postfix) with ESMTPA; Wed, 29 Apr 2015 22:36:42 +0200 (CEST) Received: by igel.home (Postfix, from userid 1000) id A2A4C2C4CEB; Wed, 29 Apr 2015 22:36:42 +0200 (CEST) From: Andreas Schwab To: Leandro Facchinetti Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty References: <87r3r24tjz.fsf@leafac.com> X-Yow: ...Just enough time to do my LIBERACE impression... Date: Wed, 29 Apr 2015 22:36:42 +0200 In-Reply-To: <87r3r24tjz.fsf@leafac.com> (Leandro Facchinetti's message of "Wed, 29 Apr 2015 15:34:56 -0400") Message-ID: <87bni6oen9.fsf@igel.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: 20465@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Leandro Facchinetti writes: > But then I tried connecting with the server using the `gnutls-cli' tool > provided by GnuTLS itself. From the command line, I ran: > > $ gnutls-cli kill-the-newsletter.com > > And it worked. $ gnutls-cli --disable-sni kill-the-newsletter.com Processed 157 CA certificate(s). Resolving 'kill-the-newsletter.com'... Connecting to '2400:cb00:2048:1::681f:5646:443'... *** Fatal error: A TLS fatal alert has been received. *** Received alert [80]: Internal error *** Handshake has failed GnuTLS error: A TLS fatal alert has been received. Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 29 16:48:59 2015 Received: (at 20465) by debbugs.gnu.org; 29 Apr 2015 20:48:59 +0000 Received: from localhost ([127.0.0.1]:56735 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYug-0001iO-Gy for submit@debbugs.gnu.org; Wed, 29 Apr 2015 16:48:58 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:56722) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYud-0001iF-Qn for 20465@debbugs.gnu.org; Wed, 29 Apr 2015 16:48:56 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3lcX4k6Vtnz3hj1W; Wed, 29 Apr 2015 22:48:54 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3lcX4j6y8Jzvh1n; Wed, 29 Apr 2015 22:48:53 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id QflyoWYgYbd8; Wed, 29 Apr 2015 22:48:53 +0200 (CEST) X-Auth-Info: K8JSqlE5p8RrKSTRzjcblHb/xNbIoBuvrEb0UZIoCOIlkgmcat75OfIO9eh47OYY Received: from igel.home (ppp-93-104-60-157.dynamic.mnet-online.de [93.104.60.157]) by mail.mnet-online.de (Postfix) with ESMTPA; Wed, 29 Apr 2015 22:48:53 +0200 (CEST) Received: by igel.home (Postfix, from userid 1000) id 2C72A2C4CF5; Wed, 29 Apr 2015 22:48:53 +0200 (CEST) From: Andreas Schwab To: Leandro Facchinetti Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty References: <87r3r24tjz.fsf@leafac.com> X-Yow: YOW!! What should the entire human race DO?? Consume a fifth of CHIVAS REGAL, ski NUDE down MT. EVEREST, and have a wild SEX WEEKEND! Date: Wed, 29 Apr 2015 22:48:53 +0200 In-Reply-To: <87r3r24tjz.fsf@leafac.com> (Leandro Facchinetti's message of "Wed, 29 Apr 2015 15:34:56 -0400") Message-ID: <877fsuoe2y.fsf@igel.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: 20465@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) This has been fixed in Emacs 25 (emacs-24.4-1962-gccae04f). Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 29 16:52:53 2015 Received: (at control) by debbugs.gnu.org; 29 Apr 2015 20:52:53 +0000 Received: from localhost ([127.0.0.1]:56739 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYyS-0001oF-Nm for submit@debbugs.gnu.org; Wed, 29 Apr 2015 16:52:52 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:57965 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYyQ-0001o7-S1 for control@debbugs.gnu.org; Wed, 29 Apr 2015 16:52:51 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1YnYyQ-0002d6-Hc for control@debbugs.gnu.org; Wed, 29 Apr 2015 16:52:50 -0400 Date: Wed, 29 Apr 2015 16:52:50 -0400 Message-Id: Subject: control message for bug 20465 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) unarchive 18208 forcemerge 18208 20465 From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 29 16:54:22 2015 Received: (at 20465) by debbugs.gnu.org; 29 Apr 2015 20:54:22 +0000 Received: from localhost ([127.0.0.1]:56743 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYzu-0001r6-AJ for submit@debbugs.gnu.org; Wed, 29 Apr 2015 16:54:22 -0400 Received: from www.leafac.com ([104.236.80.74]:55068) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YnYzs-0001qy-0U for 20465@debbugs.gnu.org; Wed, 29 Apr 2015 16:54:20 -0400 Received: from leafac (c-73-200-221-142.hsd1.md.comcast.net [73.200.221.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: me@leafac.com) by www.leafac.com (Postfix) with ESMTPSA id 269AC66064; Wed, 29 Apr 2015 16:54:19 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=www.leafac.com; s=mail; t=1430340859; bh=1IIP01JK6dymBCBEkWDMroorNBZZMQrRSs9CNF9Vk/U=; h=References:From:To:Cc:Subject:In-reply-to:Date:From; b=PKdT178Ysvl1N758FyymDD9gIuW5oynR5Os2H8+0xXEKn0xcplXdDvDtxuIHYfEmg mT/YKOLf9ct/3WdO5I/Nej2H1rCKNoZv4TQ+40AGdGZkrGlFQvHUpy121Kz2jNsBhq hBn590cmxQoe4umMVL3vbJ+JbsVkJ1qdvmOvmlLY= References: <87r3r24tjz.fsf@leafac.com> <87bni6oen9.fsf@igel.home> From: Leandro Facchinetti To: Andreas Schwab Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty In-reply-to: <87bni6oen9.fsf@igel.home> Date: Wed, 29 Apr 2015 16:54:18 -0400 Message-ID: <87pp6m4pvp.fsf@leafac.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 20465 Cc: 20465@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Thank you very much, Andreas! That was spot on. And kudos for the lightning fast answer! Do I need to do something to mark the bug I opened as fixed? Andreas Schwab writes: > Leandro Facchinetti writes: > >> But then I tried connecting with the server using the `gnutls-cli' tool >> provided by GnuTLS itself. From the command line, I ran: >> >> $ gnutls-cli kill-the-newsletter.com >> >> And it worked. > > $ gnutls-cli --disable-sni kill-the-newsletter.com > Processed 157 CA certificate(s). > Resolving 'kill-the-newsletter.com'... > Connecting to '2400:cb00:2048:1::681f:5646:443'... > *** Fatal error: A TLS fatal alert has been received. > *** Received alert [80]: Internal error > *** Handshake has failed > GnuTLS error: A TLS fatal alert has been received. > > Andreas. -- Leandro Facchinetti https://www.leafac.com GPG key: 3DF3D583 From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 18:07:59 2015 Received: (at 20465) by debbugs.gnu.org; 4 May 2015 22:07:59 +0000 Received: from localhost ([127.0.0.1]:34106 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpOWs-00081I-PW for submit@debbugs.gnu.org; Mon, 04 May 2015 18:07:59 -0400 Received: from mail-qc0-f180.google.com ([209.85.216.180]:33877) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpOWp-000813-Re for 20465@debbugs.gnu.org; Mon, 04 May 2015 18:07:56 -0400 Received: by qcyk17 with SMTP id k17so79425260qcy.1 for <20465@debbugs.gnu.org>; Mon, 04 May 2015 15:07:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lifelogs.com; s=google; h=from:to:cc:subject:organization:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:user-agent :mime-version:content-type; bh=3+B4zNM3JWEJ9Ge+sqFluEjr51BUTEZbcbNBCPJeFPw=; b=RDnwC+k/+DTvPO9mZI1pbpYHa+vkmz8asQCUa/GXiFME+bVO4jW0AHycM20OAuvAxu 6uvtd7d9OQgWfvL2FZRhw81d0GYUbvO64aKLxD/zmiXEsUonSlt0nw9AktrIkqX2P8FK ZTiY4bk5toSfcu07ZfL+QjvfvX4yf9K+1qPTs= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:organization:references :mail-copies-to:gmane-reply-to-list:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=3+B4zNM3JWEJ9Ge+sqFluEjr51BUTEZbcbNBCPJeFPw=; b=m1g6lUgEisaaGZiYdeXPPvoTHoWg9rwsyU27Kpr4H9ZptWWTa1q6mAU1wzUb6BRPQV esssWvZs5emC/tWJbaShTfZY/9tY50GSAbzwZA/9W292fqDJXcIRtlFEqLISAN65tMb7 NrCVsAC/YxJYqBasEkB4olfYGWKxe4UCtRWahBChY/qOGAQWZ03CdcMNPbkTACJMg9TP MiJsbXviUzHySqAtu+gJaFSLXKdxsPc9gJKeizNxP0FPzYDTS7CppZwMFYpcObvqSASf 9drVotLscdH18Kr19PgNqwfaI33STFs0SJFYFUHcYrsLOJkJJAfnUrWJ4toKFoLCS2q4 cNEA== X-Gm-Message-State: ALoCoQnGD2zxbKILTFWRmeAeEJAmvlo4O3JtE51oNUmMk8Tf40QsOpLYXOhM8RDzjkmPrHOWcSnj X-Received: by 10.140.144.12 with SMTP id 12mr30948220qhq.72.1430777270518; Mon, 04 May 2015 15:07:50 -0700 (PDT) Received: from flea (c-98-229-61-72.hsd1.ma.comcast.net. [98.229.61.72]) by mx.google.com with ESMTPSA id r198sm25909037qha.2.2015.05.04.15.07.49 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 04 May 2015 15:07:49 -0700 (PDT) From: Ted Zlatanov To: Andreas Schwab Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos References: <87r3r24tjz.fsf@leafac.com> <877fsuoe2y.fsf@igel.home> X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Mon, 04 May 2015 18:08:05 -0400 In-Reply-To: <877fsuoe2y.fsf@igel.home> (Andreas Schwab's message of "Wed, 29 Apr 2015 22:48:53 +0200") Message-ID: <87oam06loa.fsf@lifelogs.com> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Wed, 29 Apr 2015 22:48:53 +0200 Andreas Schwab wrote: AS> This has been fixed in Emacs 25 (emacs-24.4-1962-gccae04f). Andreas, could you be more specific, if you know what fixed the problem, and what the problem itself was? Was it addressed in a previous bug or do you perhaps know the commit ID or something else? Thanks! Ted From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 18:08:50 2015 Received: (at 20465) by debbugs.gnu.org; 4 May 2015 22:08:50 +0000 Received: from localhost ([127.0.0.1]:34110 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpOXi-00082t-96 for submit@debbugs.gnu.org; Mon, 04 May 2015 18:08:50 -0400 Received: from mail-qg0-f48.google.com ([209.85.192.48]:36246) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpOXg-00082e-Ha for 20465@debbugs.gnu.org; Mon, 04 May 2015 18:08:49 -0400 Received: by qgeb100 with SMTP id b100so72822336qge.3 for <20465@debbugs.gnu.org>; Mon, 04 May 2015 15:08:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lifelogs.com; s=google; h=from:to:cc:subject:organization:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:user-agent :mime-version:content-type; bh=blxLEQhWzZVYCaAOb9rPR/UDBxyaoyGAWbYAyk/EC2o=; b=HAauwxqD0amggQqA9evfNzUec+WaA3xi2iX89lAIId2sSym1WLnwkuOIY454Waq3Y2 RWaojChhYHOURYGFjioSAI8v5xHJYkLt9jS58QzOOl4L/bYOCZ7Ni33okYgp9vrfMAK/ dKx1bgNoLIWCaf6YVrTuJbxVG7eAL7paazBUE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:organization:references :mail-copies-to:gmane-reply-to-list:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=blxLEQhWzZVYCaAOb9rPR/UDBxyaoyGAWbYAyk/EC2o=; b=NSqADMw39QWVIK2ld7aZpzKZcxz380rAiS+bJp4YwN4joEgg70wSQCkNii4SXhZxac COOqb/rx0RUnrt00kSl1DZjO0UsnHYXk5QlWBXH4r6WqcfCT5/+ZcOGJXq+EswnNi0lm eBFnvmci8LSLxJ0u+zjuN7X/hbRH2GugRrBkNqKZGzKkKXfIP19mAbbhci/YpZZz7E1n 6xedxeTLCjuCj+VMTHEUq//oW3uykAgR552N76k2ZHVFdYjlPYDH+zcodGVgMXBfa7Ak 8JZvy5PYuXLSSd+ZbE5w7h/wx6QHzdI9pxCKBw8R+c/CtRkxB3DeFUtF9NZdh9OQtsA4 feUg== X-Gm-Message-State: ALoCoQlyDYUP7qAZW9FypuAT1L+jJXqJ3mWlUV5LltgHr46ysqwefVhL7mbDSbQ2AIwhOoWXDbri X-Received: by 10.229.104.135 with SMTP id p7mr7511145qco.12.1430777323148; Mon, 04 May 2015 15:08:43 -0700 (PDT) Received: from flea (c-98-229-61-72.hsd1.ma.comcast.net. [98.229.61.72]) by mx.google.com with ESMTPSA id t33sm10858097qge.19.2015.05.04.15.08.42 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 04 May 2015 15:08:42 -0700 (PDT) From: Ted Zlatanov To: Leandro Facchinetti Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos References: <87r3r24tjz.fsf@leafac.com> <87bni6oen9.fsf@igel.home> <87pp6m4pvp.fsf@leafac.com> X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Mon, 04 May 2015 18:08:58 -0400 In-Reply-To: <87pp6m4pvp.fsf@leafac.com> (Leandro Facchinetti's message of "Wed, 29 Apr 2015 16:54:18 -0400") Message-ID: <87k2wo6lmt.fsf@lifelogs.com> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: Andreas Schwab , 20465@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Wed, 29 Apr 2015 16:54:18 -0400 Leandro Facchinetti wrote: LF> Do I need to do something to mark the bug I opened as fixed? Normally you'd reply to 20465-done@debbugs.gnu.org but I'd like to wait until we know what was broken and how we fixed it. Thanks Ted From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 18:25:34 2015 Received: (at 20465) by debbugs.gnu.org; 4 May 2015 22:25:34 +0000 Received: from localhost ([127.0.0.1]:34130 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpOnt-0008Ss-LZ for submit@debbugs.gnu.org; Mon, 04 May 2015 18:25:34 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:51694) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpOnq-0008Si-Eb for 20465@debbugs.gnu.org; Mon, 04 May 2015 18:25:31 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3lgdzs1j3bz3hkjX; Tue, 5 May 2015 00:25:29 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3lgdzs0XW1zvh1n; Tue, 5 May 2015 00:25:29 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id z2LoSe8VWfIg; Tue, 5 May 2015 00:25:28 +0200 (CEST) X-Auth-Info: aH9Z1Faes0Y4pxrCkhjA9Gudg0Mf/jLM8rwCaquGQ2NySPddwuMuygFbHPdbpZAM Received: from igel.home (ppp-93-104-95-242.dynamic.mnet-online.de [93.104.95.242]) by mail.mnet-online.de (Postfix) with ESMTPA; Tue, 5 May 2015 00:25:28 +0200 (CEST) Received: by igel.home (Postfix, from userid 1000) id 23F252C39F1; Tue, 5 May 2015 00:25:28 +0200 (CEST) From: Andreas Schwab To: Leandro Facchinetti Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty References: <87r3r24tjz.fsf@leafac.com> <877fsuoe2y.fsf@igel.home> <87oam06loa.fsf@lifelogs.com> X-Yow: MMM-MM!! So THIS is BIO-NEBULATION! Date: Tue, 05 May 2015 00:25:28 +0200 In-Reply-To: <87oam06loa.fsf@lifelogs.com> (Ted Zlatanov's message of "Mon, 04 May 2015 18:08:05 -0400") Message-ID: <87lhh47zfr.fsf@igel.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: 20465@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Ted Zlatanov writes: > On Wed, 29 Apr 2015 22:48:53 +0200 Andreas Schwab wrote: > > AS> This has been fixed in Emacs 25 (emacs-24.4-1962-gccae04f). > > Andreas, could you be more specific, if you know what fixed the problem, > and what the problem itself was? Was it addressed in a previous bug or > do you perhaps know the commit ID or something else? That _is_ the commit ID. Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 18:38:52 2015 Received: (at 20465) by debbugs.gnu.org; 4 May 2015 22:38:52 +0000 Received: from localhost ([127.0.0.1]:34138 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpP0m-0000MH-CP for submit@debbugs.gnu.org; Mon, 04 May 2015 18:38:52 -0400 Received: from mail-qk0-f178.google.com ([209.85.220.178]:35667) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpP0j-0000M0-U6 for 20465@debbugs.gnu.org; Mon, 04 May 2015 18:38:50 -0400 Received: by qkhg7 with SMTP id g7so95307975qkh.2 for <20465@debbugs.gnu.org>; Mon, 04 May 2015 15:38:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lifelogs.com; s=google; h=from:to:cc:subject:organization:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:user-agent :mime-version:content-type; bh=YaDnP2XTOhT/0ClfUHldjHjaJOf9938ox/OtAYzZWiQ=; b=C5qxQhV388XvIOwSoIzjP+0ADhEKVkfRrmpgi3RUEROSuQG232CIQyXol9vEN6XghR FEBkHCtRApMTeZPSbDQ8BOYNIom2gTWqqIKihu+qMy/ySUif4S+nRSh0nW7tcRs/FHIj QP/OzRl6Pfh2vtN2iplhny2leyQxFI/LjIJdQ= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:organization:references :mail-copies-to:gmane-reply-to-list:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=YaDnP2XTOhT/0ClfUHldjHjaJOf9938ox/OtAYzZWiQ=; b=cNdnZ1cYL4EJohPBu6nOYH7CdTzd8dbaNIuaHQav5bUg1qYIAgwBH24DiBt0FVO8z6 oUd789zoKlxn6D6DM2oyvBlrbe2+7kWlzlxjgfnEUYej8e4cKdfalzqIG98gMiXaxqo2 krpC/SX/vZH2NOwcLi/G7ARJmIcjAnmYHYnpeM2RB4LGMUPOK/QfopbWp/29n5E/K84G Iocl+y2sgcZ6k6yv4NdMQ2NwiYrgKPPlpNOSePjFGhe4UzOBSGZAL6gh/GlVYRn/XU0H kmaoKyY9sr7rZfZQDobWOzrIhNCqNaRfxtCIivowSAx390wgirUjkB4dQOjt5YhPvywE lGDQ== X-Gm-Message-State: ALoCoQnqToMa3B6cmILo4M/3N2vIIIs8suKfG9MJ6ab7QTCwWm179jffK9yaM1jTiRW58LSz1iYV X-Received: by 10.55.20.141 with SMTP id 13mr50652447qku.30.1430779123301; Mon, 04 May 2015 15:38:43 -0700 (PDT) Received: from flea (c-98-229-61-72.hsd1.ma.comcast.net. [98.229.61.72]) by mx.google.com with ESMTPSA id 197sm25953679qhq.23.2015.05.04.15.38.42 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Mon, 04 May 2015 15:38:42 -0700 (PDT) From: Ted Zlatanov To: Andreas Schwab Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos References: <87r3r24tjz.fsf@leafac.com> <877fsuoe2y.fsf@igel.home> <87oam06loa.fsf@lifelogs.com> <87lhh47zfr.fsf@igel.home> X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Mon, 04 May 2015 18:38:58 -0400 In-Reply-To: <87lhh47zfr.fsf@igel.home> (Andreas Schwab's message of "Tue, 05 May 2015 00:25:28 +0200") Message-ID: <87y4l455od.fsf@lifelogs.com> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Tue, 05 May 2015 00:25:28 +0200 Andreas Schwab wrote: AS> Ted Zlatanov writes: >> On Wed, 29 Apr 2015 22:48:53 +0200 Andreas Schwab wrote: >> AS> This has been fixed in Emacs 25 (emacs-24.4-1962-gccae04f). >> >> Andreas, could you be more specific, if you know what fixed the problem, >> and what the problem itself was? Was it addressed in a previous bug or >> do you perhaps know the commit ID or something else? AS> That _is_ the commit ID. I am either unable to copy and paste or unable to pull some revisions or otherwise blind, because I can't find that commit ID. Sorry to be a pest but could you give the full hash, as `git log' would show it? Ted From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 20:40:44 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 00:40:44 +0000 Received: from localhost ([127.0.0.1]:34174 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpQug-0003FY-Vt for submit@debbugs.gnu.org; Mon, 04 May 2015 20:40:43 -0400 Received: from www.leafac.com ([104.236.80.74]:55189) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpQue-0003FQ-RM for 20465@debbugs.gnu.org; Mon, 04 May 2015 20:40:41 -0400 Received: from leafac (c-73-200-221-142.hsd1.md.comcast.net [73.200.221.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: me@leafac.com) by www.leafac.com (Postfix) with ESMTPSA id E0C336016F; Mon, 4 May 2015 20:40:39 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=www.leafac.com; s=mail; t=1430786440; bh=Z78tW6T6ANLocKjDyR/xQcExwSXz4T1XBH9uH6ZMNSM=; h=References:From:To:Cc:Subject:In-reply-to:Date:From; b=hmjOKX3zrdA9g9RRGB5ECGU59NUOiNlzfGN484cb/YMKFVWBBNgPm+WO1KUKG8nOs m9uI0/4jQNOGtXvaVsTJCB6Ny9YaUNg604FwhCokQ8WwQ8CsZU/eJp2sJqpoYIkzr7 4O4lrYU4l4J7mQwcnibxYF6KRMLfzH3OQF6GlkqU= References: <87r3r24tjz.fsf@leafac.com> <877fsuoe2y.fsf@igel.home> <87oam06loa.fsf@lifelogs.com> <87lhh47zfr.fsf@igel.home> <87y4l455od.fsf@lifelogs.com> From: Leandro Facchinetti To: Ted Zlatanov Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty In-reply-to: <87y4l455od.fsf@lifelogs.com> Date: Mon, 04 May 2015 20:40:42 -0400 Message-ID: <87pp6fn9f9.fsf@leafac.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 20465 Cc: Andreas Schwab , 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) > I am either unable to copy and paste or unable to pull some revisions or > otherwise blind, because I can't find that commit ID. Sorry to be a pest > but could you give the full hash, as `git log' would show it? To be honest, I thought that was the commit hash and tried to look for it, to satisfy my curiosity. I couldn't find it either, but I figured it was just me being dumb. At least, I can point this related issue (it was listed on the bug tracker along with the issue I opened): http://debbugs.gnu.org/cgi/bugreport.cgi?bug=18208 -- Leandro Facchinetti https://www.leafac.com GPG key: 3DF3D583 From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 20:43:37 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 00:43:37 +0000 Received: from localhost ([127.0.0.1]:34178 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpQxV-0003Jt-9p for submit@debbugs.gnu.org; Mon, 04 May 2015 20:43:37 -0400 Received: from www.leafac.com ([104.236.80.74]:55194) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpQxT-0003Jm-Ln for 20465@debbugs.gnu.org; Mon, 04 May 2015 20:43:36 -0400 Received: from leafac (c-73-200-221-142.hsd1.md.comcast.net [73.200.221.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: me@leafac.com) by www.leafac.com (Postfix) with ESMTPSA id 04D5A6016F; Mon, 4 May 2015 20:43:34 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=www.leafac.com; s=mail; t=1430786615; bh=she/o56/JTZQTQnf/gS18WplkpBlc8ydKJMPH5qwDNw=; h=References:From:To:Cc:Subject:In-reply-to:Date:From; b=GjW7GQDDUbHjeDQt0LESU+Eu3Vdk9oeGh9Zu0uI5+KSGlDBRgB93Xsz9Mwis6ZBFq lkS2VfzwvdtGhZV8FddTclEMzOFLaw+uV0V4uQ8EEl1/6HK7OFlWI8neSyklD6y9+W 6BGYUu26UwMtgg6Zdx+ft7JY9JVP/x/y29UV39+0= References: <87r3r24tjz.fsf@leafac.com> <87bni6oen9.fsf@igel.home> <87pp6m4pvp.fsf@leafac.com> <87k2wo6lmt.fsf@lifelogs.com> From: Leandro Facchinetti To: Ted Zlatanov Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty In-reply-to: <87k2wo6lmt.fsf@lifelogs.com> Date: Mon, 04 May 2015 20:43:37 -0400 Message-ID: <87oalzn9ae.fsf@leafac.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 20465 Cc: Andreas Schwab , 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) > Normally you'd reply to 20465-done@debbugs.gnu.org but I'd like to wait > until we know what was broken and how we fixed it. Thanks for letting me know. There was nothing _broken_ per se. It was just that `gnutls.c' didn't support Server Name Indication (SNI). I suppose the fix was to add some options when calling GnuTLS. When we settle this question, I'll e-mail 20465-done@debbugs.gnu.org to close the issue. -- Leandro Facchinetti https://www.leafac.com GPG key: 3DF3D583 From debbugs-submit-bounces@debbugs.gnu.org Mon May 04 20:52:52 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 00:52:52 +0000 Received: from localhost ([127.0.0.1]:34186 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpR6R-0003Xg-Vi for submit@debbugs.gnu.org; Mon, 04 May 2015 20:52:52 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:37770 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpR6Q-0003XY-7Z for 20465@debbugs.gnu.org; Mon, 04 May 2015 20:52:50 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1YpR6O-00089s-2M; Mon, 04 May 2015 20:52:48 -0400 From: Glenn Morris To: Leandro Facchinetti Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty References: <87r3r24tjz.fsf@leafac.com> <87bni6oen9.fsf@igel.home> <87pp6m4pvp.fsf@leafac.com> <87k2wo6lmt.fsf@lifelogs.com> <87oalzn9ae.fsf@leafac.com> X-Spook: security offensive information warfare Osama Commecen X-Ran: dcnHTCh,(94__'`X9xeAS0Q!)P:JmpSrft/fx!2%;WcNR!hq_{{RYBS'yD_118$IpS)dXN X-Hue: white X-Debbugs-No-Ack: yes X-Attribution: GM Date: Mon, 04 May 2015 20:52:47 -0400 In-Reply-To: <87oalzn9ae.fsf@leafac.com> (Leandro Facchinetti's message of "Mon, 04 May 2015 20:43:37 -0400") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 20465 Cc: Ted Zlatanov , Andreas Schwab , 20465@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) git show emacs-24.4-1962-gccae04f works fine for me. (ccae04f205db7cffa0f247a463272f6c5af77122 if you prefer.) It's why I merged this report with #18208 5 days ago, thus closing it. Presumably the desire was to indicate that the fixing commit came *after* 24.4. From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 05:52:22 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 09:52:23 +0000 Received: from localhost ([127.0.0.1]:34368 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpZWY-0002tE-Cl for submit@debbugs.gnu.org; Tue, 05 May 2015 05:52:22 -0400 Received: from mail-qg0-f42.google.com ([209.85.192.42]:35168) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpZWV-0002sz-3u for 20465@debbugs.gnu.org; Tue, 05 May 2015 05:52:19 -0400 Received: by qgej70 with SMTP id j70so78264074qge.2 for <20465@debbugs.gnu.org>; Tue, 05 May 2015 02:52:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lifelogs.com; s=google; h=from:to:cc:subject:organization:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:user-agent :mime-version:content-type; bh=wQRteJFx2bYis+CtlCrhMkW5KHLY+stU2fdZKA53H4k=; b=jCE3bpqXw8AeuZpldSTswyQ93jh8vMi5oLLlSIfrq4Ixz0V3m/t44iYLMIo/XZO003 NLa8sZjp2Qm+DsW5HrSalJNFM7R8sjOhwXRT2+VPwXCK/oCkjji+pY/yX6cpTLnzNfpQ PJQm1P62721pyP8SceifQqMX6uSEFof+UVg7A= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:organization:references :mail-copies-to:gmane-reply-to-list:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=wQRteJFx2bYis+CtlCrhMkW5KHLY+stU2fdZKA53H4k=; b=kExcr4nHQxwB8lFAEHkp7YrNGDhHfYW4s7sJ1GqB9YJqVlENlysYGMCinDN+thEqTX sZuWH+6P8ScWwXdDQxhr8rkyfgjHVZAaDuq9ZXt0rZtl2hQRbRiLPfr1mlIQp/brO1e+ j5/RmG3GMApj4/JRlNF4GmzpxePN9697ypHbQTgXeTNtIIumElE95fi6g4m3pFZVfia3 2nBo+6uylXdctefdqfrBA990VkQmjvhIfgq+1hSBawySVnbpFBIn3Ix4zsf4/xeZBVCs xsAq9+PkSSC8Dmh9x3HedcoA7GIbKRj63ewrBBEBh5mYVTKCJHm6ZhKa9G/pvYEgNFD5 h3Hw== X-Gm-Message-State: ALoCoQkJ4YX8oPDjKN1o87Vx6JCWMlYK0X8WpJKVcdySZibGPhnOHrjhFmdRH+OkNdcZHN5ClS+u X-Received: by 10.55.43.213 with SMTP id r82mr51211316qkr.76.1430819533428; Tue, 05 May 2015 02:52:13 -0700 (PDT) Received: from flea (c-98-229-61-72.hsd1.ma.comcast.net. [98.229.61.72]) by mx.google.com with ESMTPSA id 21sm26927845qhy.1.2015.05.05.02.52.12 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 05 May 2015 02:52:12 -0700 (PDT) From: Ted Zlatanov To: Glenn Morris Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos References: <87r3r24tjz.fsf@leafac.com> <87bni6oen9.fsf@igel.home> <87pp6m4pvp.fsf@leafac.com> <87k2wo6lmt.fsf@lifelogs.com> <87oalzn9ae.fsf@leafac.com> X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Tue, 05 May 2015 05:52:11 -0400 In-Reply-To: (Glenn Morris's message of "Mon, 04 May 2015 20:52:47 -0400") Message-ID: <87y4l39ws4.fsf@lifelogs.com> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: Andreas Schwab , 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Mon, 04 May 2015 20:52:47 -0400 Glenn Morris wrote: GM> git show emacs-24.4-1962-gccae04f GM> works fine for me. GM> (ccae04f205db7cffa0f247a463272f6c5af77122 if you prefer.) I've been using Git for years and didn't know this notation was built-in for `git show'. I kept trying `git show gccae04f' etc. and also looked through the `git log -p src/gnutls.c' history but didn't notice this commit. Thank you for explaining. GM> It's why I merged this report with #18208 5 days ago, thus closing it. Cool, thanks! I didn't see that in gmane.emacs.bugs and didn't think to check. GM> Presumably the desire was to indicate that the fixing commit came *after* 24.4. OK; understood. A commit ID would have been less confusing to me. Ted From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 06:39:04 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 10:39:04 +0000 Received: from localhost ([127.0.0.1]:34382 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpaFk-00044M-79 for submit@debbugs.gnu.org; Tue, 05 May 2015 06:39:04 -0400 Received: from www.leafac.com ([104.236.80.74]:55230) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpaFg-00043t-LK for 20465@debbugs.gnu.org; Tue, 05 May 2015 06:39:01 -0400 Received: from leafac (c-73-200-221-142.hsd1.md.comcast.net [73.200.221.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: me@leafac.com) by www.leafac.com (Postfix) with ESMTPSA id AAA5A6016F; Tue, 5 May 2015 06:38:59 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=www.leafac.com; s=mail; t=1430822340; bh=e5MZ3lVtA5NDvFIrE5lW/dQzf18Dm0MrxRhopPNQevU=; h=References:From:To:Cc:Subject:In-reply-to:Date:From; b=cJgNBhMmJa/3UjLmKfVTOl8Ey16B+mNcjFTYcDjAnxQ3jsF3+PVJdsWG8KY5T4HyB DzHas4iaAMImlFztJmNa8MjssZ+L1Y2exYDDn+Gj7Y3ktTEg1R4PiDedQSgn0w9JCU JFO+YKMeXruiMzt4aDGG24s3F9WbMruiRnw1mVO0= References: <87r3r24tjz.fsf@leafac.com> <87bni6oen9.fsf@igel.home> <87pp6m4pvp.fsf@leafac.com> <87k2wo6lmt.fsf@lifelogs.com> <87oalzn9ae.fsf@leafac.com> <87y4l39ws4.fsf@lifelogs.com> From: Leandro Facchinetti To: Ted Zlatanov Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty In-reply-to: <87y4l39ws4.fsf@lifelogs.com> Date: Tue, 05 May 2015 06:39:03 -0400 Message-ID: <87mw1jmhq0.fsf@leafac.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 20465 Cc: Glenn Morris , Andreas Schwab , 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) > GM> git show emacs-24.4-1962-gccae04f > > GM> works fine for me. > > GM> (ccae04f205db7cffa0f247a463272f6c5af77122 if you prefer.) > > I've been using Git for years and didn't know this notation was built-in > for `git show'. I kept trying `git show gccae04f' etc. and also looked > through the `git log -p src/gnutls.c' history but didn't notice this > commit. Thank you for explaining. I learned something today! >From the `gitrevisions(7)' manual: , e.g. v1.7.4.2-679-g3bee7fb Output from git describe; i.e. a closest tag, optionally followed by a dash and a number of commits, followed by a dash, a g, and an abbreviated object name. In fact: $ git describe --tags ccae04f205db7cffa0f247a463272f6c5af77122 emacs-24.4-1962-gccae04f And: $ git show emacs-24.4-1962-gccae04f Then shows the commit. That's interesting! I couldn't test the fix yet because I don't want to learn how to build Emacs just now. Instead, I'll wait for the next release (lazy, I know). I'll send the e-mail that closes the issue. Thanks! > > GM> It's why I merged this report with #18208 5 days ago, thus closing it. > > Cool, thanks! I didn't see that in gmane.emacs.bugs and didn't think to check. > > GM> Presumably the desire was to indicate that the fixing commit came *after* 24.4. > > OK; understood. A commit ID would have been less confusing to me. > > Ted -- Leandro Facchinetti https://www.leafac.com GPG key: 3DF3D583 From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 06:41:08 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 10:41:08 +0000 Received: from localhost ([127.0.0.1]:34388 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpaHj-00047i-Kh for submit@debbugs.gnu.org; Tue, 05 May 2015 06:41:08 -0400 Received: from www.leafac.com ([104.236.80.74]:55234) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpaHg-00047P-7S; Tue, 05 May 2015 06:41:04 -0400 Received: from leafac (c-73-200-221-142.hsd1.md.comcast.net [73.200.221.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: me@leafac.com) by www.leafac.com (Postfix) with ESMTPSA id 693B86016F; Tue, 5 May 2015 06:41:03 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=www.leafac.com; s=mail; t=1430822463; bh=0knYHp1jj4mlLsJO7+gkrxXJb4400DfqV60BB2w2y0E=; h=References:From:To:Subject:In-reply-to:Date:From; b=aCQW6aWAZizOrJbVia8nPfZ8/3vvhJiOtBkxdr4kMK91g708u17EDumPGPZsEA4VR 4vZF7SJDQiaHfBMyPPmCgndtRkw4jZve9PgH3uspa5frDgvm3eRBK1f2xHaxBynNuW hYry18opft+oIlenhFgBhNUAE7h72ZYYsSmOOw8Q= References: <87r3r24tjz.fsf@leafac.com> From: Leandro Facchinetti To: 20465@debbugs.gnu.org, 20465-done@debbugs.gnu.org Subject: Re: bug#20465: Acknowledgement (24.4; GnuTLS integration seems faulty) In-reply-to: Date: Tue, 05 May 2015 06:41:07 -0400 Message-ID: <87lhh3mhmk.fsf@leafac.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 20465 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) Fixed. GNU bug Tracking System writes: > Thank you for filing a new bug report with debbugs.gnu.org. > > This is an automatically generated reply to let you know your message > has been received. > > Your message is being forwarded to the package maintainers and other > interested parties for their attention; they will reply in due course. > > Your message has been sent to the package maintainer(s): > bug-gnu-emacs@gnu.org > > If you wish to submit further information on this problem, please > send it to 20465@debbugs.gnu.org. > > Please do not send mail to help-debbugs@gnu.org unless you wish > to report a problem with the Bug-tracking system. -- Leandro Facchinetti https://www.leafac.com GPG key: 3DF3D583 From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 06:50:56 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 10:50:56 +0000 Received: from localhost ([127.0.0.1]:34394 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpaRD-0004ME-PT for submit@debbugs.gnu.org; Tue, 05 May 2015 06:50:56 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:42462) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpaRA-0004M4-Ec for 20465@debbugs.gnu.org; Tue, 05 May 2015 06:50:53 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3lgyWv02sfz3hjHS; Tue, 5 May 2015 12:50:50 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3lgyWt4B4pzvh2N; Tue, 5 May 2015 12:50:50 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id q6qA_yuPHWtx; Tue, 5 May 2015 12:50:49 +0200 (CEST) X-Auth-Info: Pj4C57M19/cf7sNyDMr/cKVzHkviz2wbqCaPIuaW6a1M7BcQlUAkoGO8bFtb7q88 Received: from hawking.suse.de (nat.nue.novell.com [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Tue, 5 May 2015 12:50:49 +0200 (CEST) From: Andreas Schwab To: Glenn Morris Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty References: <87r3r24tjz.fsf@leafac.com> <87bni6oen9.fsf@igel.home> <87pp6m4pvp.fsf@leafac.com> <87k2wo6lmt.fsf@lifelogs.com> <87oalzn9ae.fsf@leafac.com> <87y4l39ws4.fsf@lifelogs.com> X-Yow: Do you think the ``Monkees'' should get gas on odd or even days? Date: Tue, 05 May 2015 12:50:48 +0200 In-Reply-To: <87y4l39ws4.fsf@lifelogs.com> (Ted Zlatanov's message of "Tue, 05 May 2015 05:52:11 -0400") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Ted Zlatanov writes: > I've been using Git for years and didn't know this notation was built-in Please read git help revisions. Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 10:14:27 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 14:14:27 +0000 Received: from localhost ([127.0.0.1]:35444 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpdcB-0002bY-64 for submit@debbugs.gnu.org; Tue, 05 May 2015 10:14:27 -0400 Received: from mxin.ulb.ac.be ([164.15.128.112]:56480) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Ypdc7-0002bK-VO for 20465@debbugs.gnu.org; Tue, 05 May 2015 10:14:24 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgIKAIPPSFWkD4Xx/2dsb2JhbABchDu0DgEBAQEBBplLAoIBAQEBAQEBgQtBBYNbAQEEeRAIAxQNJQ8BBEkTiBYBFbMLi30BhXUBAQEBAQEEAQEBAR6GF4I0gm6FBQeELQEEiyCRU4c/jnAjggYdgVM8MYJFAQEB Received: from mathsrv4.ulb.ac.be (HELO localhost) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 05 May 2015 16:14:21 +0200 From: Nicolas Richard To: Andreas Schwab Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty References: <87r3r24tjz.fsf@leafac.com> <877fsuoe2y.fsf@igel.home> <87oam06loa.fsf@lifelogs.com> <87lhh47zfr.fsf@igel.home> <87y4l455od.fsf@lifelogs.com> Date: Tue, 05 May 2015 16:15:58 +0200 In-Reply-To: <87y4l455od.fsf@lifelogs.com> (Ted Zlatanov's message of "Mon, 04 May 2015 18:38:58 -0400") Message-ID: <87383b5cv5.fsf@yahoo.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 20465 Cc: 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Ted Zlatanov writes: > I am either unable to copy and paste or unable to pull some revisions or > otherwise blind, because I can't find that commit ID. Sorry to be a pest > but could you give the full hash, as `git log' would show it? "git show emacs-24.4-1962-gccae04f" works for me : commit ccae04f205db7cffa0f247a463272f6c5af77122 Date: Wed Nov 26 22:56:57 2014 +0100 Fwiw, emacs-24.4-1962-gccae04f is the kind of output given by "git describe --tags". The constituents are: - emacs-24.4 : a tag name - 1962 : IIRC this is the number of commits since the tag - g : I don't know why this letter is here. I guess its sole purpose is to *not* be a hex digit. - ccae04f : first few digits of the commit hash. HTH, -- Nicolas From debbugs-submit-bounces@debbugs.gnu.org Tue May 05 10:28:54 2015 Received: (at 20465) by debbugs.gnu.org; 5 May 2015 14:28:55 +0000 Received: from localhost ([127.0.0.1]:35452 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1YpdqA-0002x7-IN for submit@debbugs.gnu.org; Tue, 05 May 2015 10:28:54 -0400 Received: from mail-qc0-f171.google.com ([209.85.216.171]:33844) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Ypdq8-0002wr-8V for 20465@debbugs.gnu.org; Tue, 05 May 2015 10:28:52 -0400 Received: by qcyk17 with SMTP id k17so88770892qcy.1 for <20465@debbugs.gnu.org>; Tue, 05 May 2015 07:28:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lifelogs.com; s=google; h=from:to:cc:subject:organization:references:mail-copies-to :gmane-reply-to-list:date:in-reply-to:message-id:user-agent :mime-version:content-type; bh=bvC4hiXkSXsKx10JreaX15Rib6QYcpyGMChQwdV1T8s=; b=jHGt1X64SpQmsUP/VAMFyni41nBedDTEpar1PimpmCJ9sk/cYgjFhTevkXrQGUEwRF sob5qjd211jhRWKZjZ633Qh8qNT8qen3oLRxj9Lx7gBIWmPkW2/exyDeKd4nVHemPy8R ZnlNt4rF9NEyHX51yxeb3jYpJ4WwyakSww9WA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:organization:references :mail-copies-to:gmane-reply-to-list:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=bvC4hiXkSXsKx10JreaX15Rib6QYcpyGMChQwdV1T8s=; b=NcPL9xaP93U0i2vANQ1xYRWn6RSawP0fK8cRb3G/W4szsM+Vec5crvD/OF84I9CjmF 6sGU9gZPU+o945JCwqrYZJMnadaxAsp5LkN2NaCssOPEa43eQh22l0OO1yCEzOVq+j+b LeZGvSEA5fk+ITusS6y+Utpsmz8HohbLVa12MVFm/DJUw7EnkKrMfCMNP5V+TjBHdLK1 rrvdWxalpjUob3gAUzJJMpWdo+x4asXmChhqGUKUWf5Y/TGh0NJg+2ZLcbNb1Y6op0lx BahRz/8Y9ApWQhv0NoV88WDsvfmTeCcABEK9NAFwx6XNXA4Mq+bv3EOAglL08XBMqsvj 7L0w== X-Gm-Message-State: ALoCoQn3+LxZnf5xYZkyAfRjG2Q3WiYINwJm1THn6M3r/4v197IIgUsev0fyb0udnNkFArVLaX0s X-Received: by 10.55.33.142 with SMTP id f14mr57209764qki.1.1430836126748; Tue, 05 May 2015 07:28:46 -0700 (PDT) Received: from flea (c-98-229-61-72.hsd1.ma.comcast.net. [98.229.61.72]) by mx.google.com with ESMTPSA id 20sm27358191qhf.14.2015.05.05.07.28.45 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 05 May 2015 07:28:46 -0700 (PDT) From: Ted Zlatanov To: Nicolas Richard Subject: Re: bug#20465: 24.4; GnuTLS integration seems faulty Organization: =?utf-8?B?0KLQtdC+0LTQvtGAINCX0LvQsNGC0LDQvdC+0LI=?= @ Cienfuegos References: <87r3r24tjz.fsf@leafac.com> <877fsuoe2y.fsf@igel.home> <87oam06loa.fsf@lifelogs.com> <87lhh47zfr.fsf@igel.home> <87y4l455od.fsf@lifelogs.com> <87383b5cv5.fsf@yahoo.fr> X-Face: bd.DQ~'29fIs`T_%O%C\g%6jW)yi[zuz6; d4V0`@y-~$#3P_Ng{@m+e4o<4P'#(_GJQ%TT= D}[Ep*b!\e,fBZ'j_+#"Ps?s2!4H2-Y"sx" Mail-Copies-To: never Gmane-Reply-To-List: yes Date: Tue, 05 May 2015 10:28:45 -0400 In-Reply-To: <87383b5cv5.fsf@yahoo.fr> (Nicolas Richard's message of "Tue, 05 May 2015 16:15:58 +0200") Message-ID: <877fsn9jz6.fsf@lifelogs.com> User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 20465 Cc: Andreas Schwab , 20465@debbugs.gnu.org, Leandro Facchinetti X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) On Tue, 05 May 2015 16:15:58 +0200 Nicolas Richard wrote: NR> Fwiw, emacs-24.4-1962-gccae04f is the kind of output given by NR> "git describe --tags". The constituents are: NR> - emacs-24.4 : a tag name NR> - 1962 : IIRC this is the number of commits since the tag NR> - g : I don't know why this letter is here. I guess its sole purpose is to NR> *not* be a hex digit. NR> - ccae04f : first few digits of the commit hash. Aha, that `g' is what threw me. I didn't notice it was not a hex digit--`git show ccae04f' works perfectly when you omit the `g'. Thanks to everyone for the patient explanations. Thanks Ted From unknown Fri Aug 15 12:52:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 03 Jun 2015 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator