Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 144536 Details for
Bug 219980
git clone via HTTP fails
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
The message with a working patch
25975 (text/plain), 3.80 KB, created by
Horst H. von Brand
on 2006-12-29 12:41:38 UTC
(
hide
)
Description:
The message with a working patch
Filename:
MIME Type:
Creator:
Horst H. von Brand
Created:
2006-12-29 12:41:38 UTC
Size:
3.80 KB
patch
obsolete
>Replied: Fri, 29 Dec 2006 09:37:51 -0300 >Replied: "Junio C Hamano <junkio@cox.net> git@vger.kernel.org" >Return-Path: git-owner@vger.kernel.org >Delivery-Date: Thu Dec 28 22:06:36 2006 >Return-Path: <git-owner@vger.kernel.org> >Received: from laptop13.inf.utfsm.cl (laptop13.inf.utfsm.cl [127.0.0.1]) > by laptop13.inf.utfsm.cl (8.13.8/8.13.8) with ESMTP id kBT10sxt003315 > for <vonbrand@localhost>; Thu, 28 Dec 2006 22:06:35 -0300 >Received: from inti.inf.utfsm.cl [200.1.19.1] > by laptop13.inf.utfsm.cl with IMAP (fetchmail-6.3.5) > for <vonbrand@localhost> (single-drop); Thu, 28 Dec 2006 22:06:35 -0300 (CLST) >Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) > by inti.inf.utfsm.cl (8.13.1/8.13.1) with ESMTP id kBT0eQCl003743 > for <vonbrand@inf.utfsm.cl>; Thu, 28 Dec 2006 21:40:27 -0300 >Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand > id S965040AbWL2AkQ (ORCPT <rfc822;vonbrand@inf.utfsm.cl>); > Thu, 28 Dec 2006 19:40:16 -0500 >Received: (majordomo@vger.kernel.org) by vger.kernel.org id S965042AbWL2AkQ > (ORCPT <rfc822;git-outgoing>); Thu, 28 Dec 2006 19:40:16 -0500 >Received: from fed1rmmtao10.cox.net ([68.230.241.29]:54580 "EHLO > fed1rmmtao10.cox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org > with ESMTP id S965040AbWL2AkP (ORCPT <rfc822;git@vger.kernel.org>); > Thu, 28 Dec 2006 19:40:15 -0500 >Received: from fed1rmimpo02.cox.net ([70.169.32.72]) > by fed1rmmtao10.cox.net > (InterMail vM.6.01.06.03 201-2131-130-104-20060516) with ESMTP > id <20061229004014.NUAU20715.fed1rmmtao10.cox.net@fed1rmimpo02.cox.net>; > Thu, 28 Dec 2006 19:40:14 -0500 >Received: from assigned-by-dhcp.cox.net ([68.5.247.80]) > by fed1rmimpo02.cox.net with bizsmtp > id 4QgU1W0041kojtg0000000; Thu, 28 Dec 2006 19:40:28 -0500 >From: Junio C Hamano <junkio@cox.net> >To: git@vger.kernel.org >Subject: [PATCH/RFT] Work around http-fetch built with cURL 7.16.0 >References: <skimo@kotnet.org> > <200612271457.kBREvkj2011916@laptop13.inf.utfsm.cl> > <7vlkkt5d49.fsf@assigned-by-dhcp.cox.net> > <7v8xgt57wu.fsf@assigned-by-dhcp.cox.net> >Date: Thu, 28 Dec 2006 16:40:13 -0800 >In-Reply-To: <7v8xgt57wu.fsf@assigned-by-dhcp.cox.net> (Junio C. Hamano's > message of "Wed, 27 Dec 2006 13:46:25 -0800") >Message-ID: <7vfyazttzm.fsf_-_@assigned-by-dhcp.cox.net> >User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) >MIME-Version: 1.0 >Content-Type: text/plain; charset=us-ascii >Sender: git-owner@vger.kernel.org >Precedence: bulk >X-Mailing-List: git@vger.kernel.org >X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-3.0 (inti.inf.utfsm.cl [200.1.21.155]); Thu, 28 Dec 2006 21:40:27 -0300 (CLST) >X-Virus-Scanned: ClamAV version 0.88.5, clamav-milter version 0.88.5 on inti.inf.utfsm.cl >X-Virus-Status: Clean > >It appears that curl_easy_duphandle() from libcurl 7.16.0 >returns a curl session handle which fails GOOD_MULTI_HANDLE() >check in curl_multi_add_handle(). This causes fetch_ref() to >fail because start_active_slot() cannot start the request. > >For now, check for 7.16.0 to work this issue around. > >Signed-off-by: Junio C Hamano <junkio@cox.net> >--- > > * I think people who were having trouble with cURL 7.16.0 want > to have the issue resolved before v1.5.0-rc1. Please test > and report, or else ;-). > > http.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/http.h b/http.h >index 6e12e41..324fcf4 100644 >--- a/http.h >+++ b/http.h >@@ -18,7 +18,7 @@ > #define curl_global_init(a) do { /* nothing */ } while(0) > #endif > >-#if LIBCURL_VERSION_NUM < 0x070c04 >+#if (LIBCURL_VERSION_NUM < 0x070c04) || (LIBCURL_VERSION_NUM == 0x071000) > #define NO_CURL_EASY_DUPHANDLE > #endif > >-- >1.5.0.rc0.gf5c587 > > >- >To unsubscribe from this list: send the line "unsubscribe git" in >the body of a message to majordomo@vger.kernel.org >More majordomo info at http://vger.kernel.org/majordomo-info.html
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 219980
: 144536