From 9fa15c310f6a676812474c02e00178f4efd7d194 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Wed, 14 May 2008 23:21:06 +0100 Subject: [PATCH] Changed some comments related with bug fix #23238, to make things clearer. --- src/ftp.c | 2 +- src/http.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ftp.c b/src/ftp.c index e6163880..3223ea59 100644 --- a/src/ftp.c +++ b/src/ftp.c @@ -1092,7 +1092,7 @@ ftp_loop_internal (struct url *u, struct fileinfo *f, ccon *con) con->target = url_file_name (u); /* If the output_document was given, then this check was already done and - the file doesn't exist. Hence the !opt.output_document */ + the file didn't exist. Hence the !opt.output_document */ if (opt.noclobber && !opt.output_document && file_exists_p (con->target)) { logprintf (LOG_VERBOSE, diff --git a/src/http.c b/src/http.c index fa83ebf5..20f0619a 100644 --- a/src/http.c +++ b/src/http.c @@ -1825,7 +1825,7 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy) { /* If opt.noclobber is turned on and file already exists, do not retrieve the file. But if the output_document was given, then this - test was already done and the file doesn't exist. Hence the !opt.output_document */ + test was already done and the file didn't exist. Hence the !opt.output_document */ logprintf (LOG_VERBOSE, _("\ File `%s' already there; not retrieving.\n\n"), hs->local_file); /* If the file is there, we suppose it's retrieved OK. */ @@ -2379,7 +2379,7 @@ http_loop (struct url *u, char **newloc, char **local_file, const char *referer, { /* If opt.noclobber is turned on and file already exists, do not retrieve the file. But if the output_document was given, then this - test was already done and the file doesn't exist. Hence the !opt.output_document */ + test was already done and the file didn't exist. Hence the !opt.output_document */ logprintf (LOG_VERBOSE, _("\ File `%s' already there; not retrieving.\n\n"), hstat.local_file); -- 2.39.2