From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 12 Oct 2022 14:48:39 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1oibA8-0066XW-09 for lore@lore.pengutronix.de; Wed, 12 Oct 2022 14:48:39 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1oibA6-0002sV-Az; Wed, 12 Oct 2022 14:48:38 +0200 Received: from mail.thorsis.com ([92.198.35.195]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oib9h-0002sL-92 for ptxdist@pengutronix.de; Wed, 12 Oct 2022 14:48:13 +0200 Date: Wed, 12 Oct 2022 14:48:08 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=thorsis.com; s=default; t=1665578892; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:content-type:content-type:in-reply-to:in-reply-to: references:references; bh=Jn3Jmk2f0zmh4Uc4gDe4bLtCE9HdX4JfSRX5Tle0FvI=; b=TyS6JebfxIx+7fltkuebOaYKbDomjIC+i0i+TMTRipTjQOHspOZ7Qj8z/+zb44oxXnsIMg 1lKHBet69mOznlzm4JBZPkeADfsmPbIkZJrtejx2c4hwVs2l81BRA7huJgzQkaHynanEhu P8kiNj3G0dmbwfjU3Vy1TVun1yDZFMrlHsFDDEtJd+ZoxVHY6lTZMArjaRLxHTN15geVhw WuvjEjAY4zbpoo3xKh+b/+SxdJCWi1ttm/gYyFwmnrU4nN7L0DyitFnJVPlrQURB0Dgy73 dmfvqgrz+lSv+xrJJcY6CH7l6YTS4z1D8/tcfluYQs3WUy1YiV+eLfB1LQsIjQ== From: Alexander Dahl To: Ladislav Michl Message-ID: Mail-Followup-To: Ladislav Michl , ptxdist@pengutronix.de References: Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.ext.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.8 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Subject: Re: [ptxdist] [PATCH] libcurl: Align help texts X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: ptxdist@pengutronix.de Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Hello, Am Wed, Oct 12, 2022 at 01:42:07PM +0200 schrieb Ladislav Michl: > From: Ladislav Michl > > Signed-off-by: Ladislav Michl > --- > rules/libcurl.in | 17 +++++++++-------- > 1 file changed, 9 insertions(+), 8 deletions(-) > > diff --git a/rules/libcurl.in b/rules/libcurl.in > index 36800b012..d5cf3519d 100644 > --- a/rules/libcurl.in > +++ b/rules/libcurl.in > @@ -11,12 +11,13 @@ menuconfig LIBCURL > select CA_CERTIFICATES if LIBCURL_SSL_CA_CERTIFICATES && RUNTIME > select C_ARES if LIBCURL_C_ARES > help > - curl is a command line tool for transferring files with URL syntax, supporting > - FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE. > - curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, > - HTTP form based upload, proxies, cookies, user+password authentication > - (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, > - proxy tunneling and a busload of other useful tricks. > + curl is a command line tool for transferring files with URL syntax, > + supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, > + LDAP, LDAPS and FILE. > + curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, > + HTTP form based upload, proxies, cookies, user+password authentication > + (Basic, Digest, NTLM, Negotiate, kerberos...), file transfer resume, > + proxy tunneling and a busload of other useful tricks. > > if LIBCURL > > @@ -47,12 +48,12 @@ config LIBCURL_FILE > config LIBCURL_SMTP > bool "smtp" > help > - enable smtp support for sending emails > + enable smtp support for sending emails > > config LIBCURL_VERBOSE > bool "verbose messages" > help > - enable verbose messages, helpful for error indication > + enable verbose messages, helpful for error indication Reviewed-by: Alexander Dahl Greets Alex > > config LIBCURL_SSL > bool "ssl" > -- > 2.32.0 > >