mirror of
https://github.com/mirror/wget.git
synced 2025-01-09 20:00:59 +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
|
||||
such.
|
||||
* connect.c: Likewise.
|
||||
* convert.c: Likewise.
|
||||
|
||||
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. */
|
||||
if (unlink (file) < 0 && errno != ENOENT)
|
||||
{
|
||||
logprintf (LOG_NOTQUIET, _("Unable to delete `%s': %s\n"),
|
||||
file, strerror (errno));
|
||||
logprintf (LOG_NOTQUIET, _("Unable to delete %s: %s\n"),
|
||||
quote (file), strerror (errno));
|
||||
read_file_free (fm);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user