From: Steven Schubiger Date: Wed, 16 Apr 2008 10:20:06 +0000 (+0200) Subject: Use Gnulib's quote function in mswindows.c. X-Git-Tag: v1.13~421^2~12^2~28^2~28 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=4a465612b3082f22f5eca1721639463d283a1ced Use Gnulib's quote function in mswindows.c. --- diff --git a/src/ChangeLog b/src/ChangeLog index 698fdb50..7292f470 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -9,6 +9,7 @@ * gnutls.c: Likewise. * init.c: Likewise. * log.c: Likewise. + * mswindows.c: Likewise. 2008-04-16 Steven Schubiger diff --git a/src/mswindows.c b/src/mswindows.c index 2a146963..cdfea2d2 100644 --- a/src/mswindows.c +++ b/src/mswindows.c @@ -291,7 +291,7 @@ fake_fork (void) printf (_("Continuing in background, pid %lu.\n"), pi.dwProcessId); if (info->logfile_changed) - printf (_("Output will be written to `%s'.\n"), info->lfilename); + printf (_("Output will be written to %s.\n"), quote (info->lfilename)); UnmapViewOfFile (info);