mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Downgrade -N with -O to a warning.
This commit is contained in:
parent
54097c0e28
commit
e8200e6808
@ -1,3 +1,8 @@
|
|||||||
|
2008-05-12 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* wget.texi (Download Options): -N with -O downgraded to a
|
||||||
|
warning.
|
||||||
|
|
||||||
2008-04-27 Micah Cowan <micah@cowan.name>
|
2008-04-27 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
* wget.texi (Download Options) <-O>: Elaborate on why certain
|
* wget.texi (Download Options) <-O>: Elaborate on why certain
|
||||||
|
@ -553,9 +553,8 @@ immediately, and @emph{all} downloaded content will be written there.
|
|||||||
|
|
||||||
For this reason, @samp{-N} (for timestamp-checking) is not supported
|
For this reason, @samp{-N} (for timestamp-checking) is not supported
|
||||||
in combination with @samp{-O}: since @var{file} is always newly
|
in combination with @samp{-O}: since @var{file} is always newly
|
||||||
created, it will always have a very new timestamp. Contrary to some
|
created, it will always have a very new timestamp. A warning will be
|
||||||
users' expectations, the combination has never worked, and as of
|
issued if this combination is used.
|
||||||
version 1.11, it results in an error.
|
|
||||||
|
|
||||||
Similarly, using @samp{-r} or @samp{-p} with @samp{-O} may not work as
|
Similarly, using @samp{-r} or @samp{-p} with @samp{-O} may not work as
|
||||||
you expect: Wget won't just download the first file to @var{file} and
|
you expect: Wget won't just download the first file to @var{file} and
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2008-05-12 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
|
* main.c (main): Downgrade "-N with -O" to a warning.
|
||||||
|
|
||||||
2008-04-30 Micah Cowan <micah@cowan.name>
|
2008-04-30 Micah Cowan <micah@cowan.name>
|
||||||
|
|
||||||
* progress.c (create_image): Fix glitch where too many spaces are
|
* progress.c (create_image): Fix glitch where too many spaces are
|
||||||
|
@ -900,10 +900,9 @@ will be placed in the single file you specified.\n\n"));
|
|||||||
}
|
}
|
||||||
if (opt.timestamping)
|
if (opt.timestamping)
|
||||||
{
|
{
|
||||||
fputs (_("\
|
logprintf (LOG_NOTQUIET, "%s", _("\
|
||||||
Cannot specify -N if -O is given. See the manual for details.\n\n"), stdout);
|
WARNING: timestamping does nothing in combination with -O. See the manual\n\
|
||||||
print_usage ();
|
for details.\n\n"));
|
||||||
exit (1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user