1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Improve "POST data file missing" error message.

This commit is contained in:
hniksic 2005-06-26 18:11:10 -07:00
parent 30a3c74557
commit 68e27bf7e2
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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;
} }