Jochen Hein <[email protected]> writes: > --- src/main.c.orig 2013-06-02 21:41:45.000000000 +0200 > +++ src/main.c 2013-06-02 21:42:01.000000000 +0200 > @@ -1579,7 +1579,7 @@ > opt.ftp_user || opt.ftp_passwd || opt.ask_passwd) > { > fprintf (stderr, _("Username and password information not > needed to \ > - be specified when downloading from a metalink.\n")); > +be specified when downloading from a metalink.\n")); > exit(1); > } > temp_option[0] = '\0';
thanks for the patch, I am going to push this: >From 5f48ec1500fbb55547e03bbd3deb661b0c531637 Mon Sep 17 00:00:00 2001 From: Jochen Hein <[email protected]> Date: Mon, 3 Jun 2013 21:31:12 +0200 Subject: [PATCH] Remove double empty space from string. --- src/ChangeLog | 4 ++++ src/main.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 2d0b09a..0121390 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2013-06-03 Jochen Hein <[email protected]> (tiny change) + + * main.c (main): Remove double empty space from string. + 2013-05-22 Bykov Aleksey <[email protected]> * multi.c (merge_temp_files): Changed fopen mode from text to binary. diff --git a/src/main.c b/src/main.c index 5246e99..827af10 100644 --- a/src/main.c +++ b/src/main.c @@ -1579,7 +1579,7 @@ outputting to a regular file.\n")); opt.ftp_user || opt.ftp_passwd || opt.ask_passwd) { fprintf (stderr, _("Username and password information not needed to \ - be specified when downloading from a metalink.\n")); +be specified when downloading from a metalink.\n")); exit(1); } temp_option[0] = '\0'; -- 1.8.1.4 -- Giuseppe
