X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Futils.c;h=f3b4a60c3aa285a85430c22b724c6e953c772d57;hp=a4928dabacea525261ba3806dd8f34d80f89ad6e;hb=3e34be1c4b963ac120e3758c12a0317c5364fc16;hpb=a358b3b69a4c4c1d311366d2205b9a69d414d49a diff --git a/src/utils.c b/src/utils.c index a4928dab..f3b4a60c 100644 --- a/src/utils.c +++ b/src/utils.c @@ -348,7 +348,7 @@ fork_to_background (void) /* parent, no error */ printf (_("Continuing in background, pid %d.\n"), (int) pid); if (logfile_changed) - printf (_("Output will be written to `%s'.\n"), opt.lfilename); + printf (_("Output will be written to %s.\n"), quote (opt.lfilename)); exit (0); /* #### should we use _exit()? */ } @@ -394,8 +394,8 @@ remove_link (const char *file) DEBUGP (("Unlinking %s (symlink).\n", file)); err = unlink (file); if (err != 0) - logprintf (LOG_VERBOSE, _("Failed to unlink symlink `%s': %s\n"), - file, strerror (errno)); + logprintf (LOG_VERBOSE, _("Failed to unlink symlink %s: %s\n"), + quote (file), strerror (errno)); } return err; }