mirror of
https://github.com/mirror/wget.git
synced 2025-01-25 03:41:00 +08:00
Use Gnulib's quote function in convert.c.
This commit is contained in:
parent
cb2b31f052
commit
5116620aa8
@ -3,6 +3,7 @@
|
|||||||
* ftp.c: Use Gnulib's quote function for printing filenames and
|
* ftp.c: Use Gnulib's quote function for printing filenames and
|
||||||
such.
|
such.
|
||||||
* connect.c: Likewise.
|
* connect.c: Likewise.
|
||||||
|
* convert.c: Likewise.
|
||||||
|
|
||||||
2008-04-16 Steven Schubiger <schubiger@gmail.com>
|
2008-04-16 Steven Schubiger <schubiger@gmail.com>
|
||||||
|
|
||||||
|
@ -230,8 +230,8 @@ convert_links (const char *file, struct urlpos *links)
|
|||||||
zeroes from the mmaped region. */
|
zeroes from the mmaped region. */
|
||||||
if (unlink (file) < 0 && errno != ENOENT)
|
if (unlink (file) < 0 && errno != ENOENT)
|
||||||
{
|
{
|
||||||
logprintf (LOG_NOTQUIET, _("Unable to delete `%s': %s\n"),
|
logprintf (LOG_NOTQUIET, _("Unable to delete %s: %s\n"),
|
||||||
file, strerror (errno));
|
quote (file), strerror (errno));
|
||||||
read_file_free (fm);
|
read_file_free (fm);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user