aboutsummaryrefslogtreecommitdiff
path: root/ftp/wget-devel/files
diff options
context:
space:
mode:
authorFUJISHIMA Satsuki <sf@FreeBSD.org>2001-12-17 20:44:12 +0000
committerFUJISHIMA Satsuki <sf@FreeBSD.org>2001-12-17 20:44:12 +0000
commitf19760c0b3116975ec18173261432f282fd9a587 (patch)
tree813fea760579f25b975a95411a99b32f0aea712b /ftp/wget-devel/files
parent0474c4d38af1d250a90f103e980d6122123dadfa (diff)
Notes
Diffstat (limited to 'ftp/wget-devel/files')
-rw-r--r--ftp/wget-devel/files/patch-src_main.c20
-rw-r--r--ftp/wget-devel/files/patch-src_progress.c17
2 files changed, 37 insertions, 0 deletions
diff --git a/ftp/wget-devel/files/patch-src_main.c b/ftp/wget-devel/files/patch-src_main.c
new file mode 100644
index 000000000000..0af7a399c1fa
--- /dev/null
+++ b/ftp/wget-devel/files/patch-src_main.c
@@ -0,0 +1,20 @@
+Index: src/main.c
+===================================================================
+RCS file: /pack/anoncvs/wget/src/main.c,v
+retrieving revision 1.66
+retrieving revision 1.67
+diff -u -r1.66 -r1.67
+--- src/main.c 2001/12/06 07:14:35 1.66
++++ src/main.c 2001/12/09 19:44:20 1.67
+@@ -738,10 +738,7 @@
+ {
+ char *rewritten = rewrite_shorthand_url (argv[optind]);
+ if (rewritten)
+- {
+- printf ("Converted %s to %s\n", argv[optind], rewritten);
+- url[i] = rewritten;
+- }
++ url[i] = rewritten;
+ else
+ url[i] = xstrdup (argv[optind]);
+ }
diff --git a/ftp/wget-devel/files/patch-src_progress.c b/ftp/wget-devel/files/patch-src_progress.c
new file mode 100644
index 000000000000..33c42f877263
--- /dev/null
+++ b/ftp/wget-devel/files/patch-src_progress.c
@@ -0,0 +1,17 @@
+Index: src/progress.c
+===================================================================
+RCS file: /pack/anoncvs/wget/src/progress.c,v
+retrieving revision 1.21
+retrieving revision 1.22
+diff -u -r1.21 -r1.22
+--- src/progress.c 2001/12/09 01:24:40 1.21 WGET_1_8
++++ src/progress.c 2001/12/09 04:51:40 1.22
+@@ -647,7 +647,7 @@
+ /* Hours not printed: pad with three spaces (two digits and
+ colon). */
+ APPEND_LITERAL (" ");
+- else if (eta_hrs >= 10)
++ else if (eta_hrs < 10)
+ /* Hours printed with one digit: pad with one space. */
+ *p++ = ' ';
+ else