Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Oct 2020 15:13:57 +0200
From:      Christian Weisgerber <naddy@mips.inka.de>
To:        Kevin Oberman <rkoberman@gmail.com>
Cc:        "freebsd-gnome@FreeBSD.org" <freebsd-gnome@freebsd.org>
Subject:   Re: curl update to 7.73.0 breaks ABI?
Message-ID:  <20201020131357.GA12490@lorvorc.mips.inka.de>
In-Reply-To: <CAN6yY1vjZ20Z1iLQeQ-mKVZXZmO0CjfU76x4%2BU1h%2BARhby_gAw@mail.gmail.com>
References:  <CAN6yY1vUg3G2Nn7LQLuRbrxMtt0UMB5j_NFXaL8Dd=DcEenzHg@mail.gmail.com> <20201016234218.GA69749@in-addr.com> <slrnropbcc.1uhl.naddy@lorvorc.mips.inka.de> <CAN6yY1vjZ20Z1iLQeQ-mKVZXZmO0CjfU76x4%2BU1h%2BARhby_gAw@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Kevin Oberman:

> > Since 7.73.0, all of lib/curl_get_line.c is behind this:
> >
> > #if !defined(CURL_DISABLE_COOKIES) && !defined(CURL_DISABLE_ALTSVC)
> 
> Not sure why the choice in the presentation of the #if. I'd demornganize it
> for clarity.
> #if defined(CURL_DISABLE_COOKIES) || defined(CURL_DISABLE_ALTSVC)

Wrong, that would be:

#if !(defined(CURL_DISABLE_COOKIES) || defined(CURL_DISABLE_ALTSVC))

-- 
Christian "naddy" Weisgerber                          naddy@mips.inka.de



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20201020131357.GA12490>