1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

ftp/wget: Fix upstream bug #44403: wget --quiet isn't quiet anymore

http://savannah.gnu.org/bugs/index.php?44403
This commit is contained in:
Vasil Dimov 2015-03-06 20:00:38 +00:00
parent df0538693a
commit 4858b738d5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=380618
2 changed files with 13 additions and 0 deletions

View File

@ -3,6 +3,7 @@
PORTNAME= wget
DISTVERSION= 1.16.2
PORTREVISION= 1
CATEGORIES= ftp www ipv6
MASTER_SITES= GNU

View File

@ -0,0 +1,12 @@
--- src/main.c.orig 2015-02-10 23:31:49.000000000 +0200
+++ src/main.c 2015-03-06 21:55:03.975252490 +0200
@@ -1272,6 +1272,9 @@
if (opt.verbose == -1)
opt.verbose = !opt.quiet;
+ if (opt.quiet && opt.show_progress == -1)
+ opt.show_progress = false;
+
/* Sanity checks. */
if (opt.verbose && opt.quiet)
{