[Bug-wget] [PATCH 00/14] fix "make syntax-check"

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano A bunch of patches to fix "make syntax-check". Some of them were really made just to accomodate make syntax-check as "ftp: Replace main() with main in comments.". Let me know if you spot anything wrong or if is ok to push these patches to master. Giuseppe Scrivano (14):

[Bug-wget] [PATCH 02/14] Do not use exit() with a magic number

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 14 src/exits.c | 18 -- src/exits.h | 17 ++ src/init.c | 14 src/log.c | 5 +-- src/main.c | 88 -

[Bug-wget] [PATCH 01/14] main: make program_name not static

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 2 ++ src/main.c| 6 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 5ebeaf3..f93cd70 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2014-06-08 Giuseppe Scrivano +

[Bug-wget] [PATCH 03/14] Do not include strings.h

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/warc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/warc.c b/src/warc.c index dbfc16f..e3e76d0 100644 --- a/src/warc.c +++ b/src/warc.c @@ -36,7 +36,6 @@ as that of the covered work. */ #include #include #include -#include #include #include

[Bug-wget] [PATCH 10/14] Do not depend on always defined macros

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 3 +++ configure.ac| 7 ++ src/ChangeLog | 11 + src/connect.c | 5 +--- src/convert.c | 4 +-- src/css-url.c | 6 + src/hash.c | 6 + src/mswindows.h | 19 -- src/netrc.c | 2 -- src/progre

[Bug-wget] [PATCH 06/14] Remove trailing whitespaces

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 5 + build-aux/build_info.pl | 2 +- configure.ac| 6 +++--- doc/ChangeLog | 2 ++ doc/wget.texi | 10 +- src/ChangeLog | 2 ++ src/wget.h | 2 +- 7 files changed, 19 in

[Bug-wget] [PATCH 11/14] po/POTFILES.in: add missing file

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 2 ++ po/POTFILES.in | 1 + 2 files changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7c17082..7884ec6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-06-11 Giuseppe Scrivano + * po/POTFILES.in: Add lib/regcomp

[Bug-wget] [PATCH 07/14] Ensure main calls bindtextdomain

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog| 4 src/ChangeLog| 9 + src/decc_ver.c | 9 + src/hash.c | 9 + src/html-parse.c | 8 src/netrc.c | 8 src/test.c | 8 util/trunc.c | 8 8 files changed, 63 i

[Bug-wget] [PATCH 05/14] Update fdl.texi from gnulib

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- doc/ChangeLog | 4 doc/fdl.texi | 25 - 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/doc/ChangeLog b/doc/ChangeLog index 17d5e8a..446ed5a 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2014-06-10 Giu

[Bug-wget] [PATCH 08/14] Remove trailing empty lines

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ABOUT-NLS | 1 - ChangeLog | 4 + MAILING-LIST | 1 - doc/ChangeLog | 4 + doc/fdl.texi

[Bug-wget] [PATCH 13/14] Remove duplicated words

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 2 ++ NEWS | 2 +- src/ChangeLog | 3 +++ src/cmpt.c| 2 +- src/utils.c | 2 +- 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7884ec6..29891b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1

[Bug-wget] [PATCH 04/14] Drop usage of strncpy

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 15 +++ src/css-url.c | 25 +++-- src/ftp-basic.c | 10 +- src/ftp.c | 14 +- src/http.c | 8 +--- src/init.c | 9 ++--- src/mswindows.c | 7 +++ src/retr.c | 2

[Bug-wget] [PATCH 09/14] Replace @VAR@ in Makefile.am files with $VAR

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- ChangeLog | 3 +++ Makefile.am | 2 +- doc/ChangeLog | 2 ++ doc/Makefile.am | 11 +-- src/ChangeLog | 2 ++ src/Makefile.am | 8 tests/ChangeLog | 2 ++ tests/Makefile.am | 4 ++-- util/Makefile.am | 2 +- 9 files

[Bug-wget] [PATCH 12/14] gnutls: do not include

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 2 ++ src/gnutls.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 2d950b1..88837a0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2014-06-11 Giuseppe Scrivano + * gn

[Bug-wget] [PATCH 14/14] ftp: Replace main() with main in comments.

2014-06-11 Thread gscrivano
From: Giuseppe Scrivano --- src/ChangeLog | 4 src/ftp.c | 2 +- src/http.c| 2 +- src/init.c| 6 +++--- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 0a4f4dc..07d7f38 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,