mirror of
https://github.com/mirror/wget.git
synced 2025-01-22 18:21:03 +08:00
[svn] Improve "POST data file missing" error message.
This commit is contained in:
parent
30a3c74557
commit
68e27bf7e2
@ -1,3 +1,8 @@
|
|||||||
|
2005-06-27 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
|
* http.c (gethttp): Improve "POST data file missing" error
|
||||||
|
message.
|
||||||
|
|
||||||
2005-06-27 Hrvoje Niksic <hniksic@xemacs.org>
|
2005-06-27 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
* progress.c (set_progress_implementation): Type COLON as const
|
* progress.c (set_progress_implementation): Type COLON as const
|
||||||
|
@ -1353,7 +1353,7 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
|
|||||||
post_data_size = file_size (opt.post_file_name);
|
post_data_size = file_size (opt.post_file_name);
|
||||||
if (post_data_size == -1)
|
if (post_data_size == -1)
|
||||||
{
|
{
|
||||||
logprintf (LOG_NOTQUIET, _("POST data file missing: %s (%s)\n"),
|
logprintf (LOG_NOTQUIET, _("POST data file `%s' missing: %s\n"),
|
||||||
opt.post_file_name, strerror (errno));
|
opt.post_file_name, strerror (errno));
|
||||||
post_data_size = 0;
|
post_data_size = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user