From: Steven Schubiger Date: Wed, 16 Apr 2008 10:31:17 +0000 (+0200) Subject: Use Gnulib's quote function in res.c. X-Git-Tag: v1.13~421^2~12^2~28^2~24 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=a358b3b69a4c4c1d311366d2205b9a69d414d49a Use Gnulib's quote function in res.c. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8d9b6ac2..5be96475 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -13,6 +13,7 @@ * openssl.c: Likewise. * progress.c: Likewise. * recur.c: Likewise. + * res.c: Likewise. 2008-04-16 Steven Schubiger diff --git a/src/res.c b/src/res.c index 0be3f762..8c35f0e1 100644 --- a/src/res.c +++ b/src/res.c @@ -463,9 +463,9 @@ res_match_path (const struct robot_specs *specs, const char *path) if (matches (specs->paths[i].path, path)) { bool allowedp = specs->paths[i].allowedp; - DEBUGP (("%s path %s because of rule `%s'.\n", + DEBUGP (("%s path %s because of rule %s.\n", allowedp ? "Allowing" : "Rejecting", - path, specs->paths[i].path)); + path, quote (specs->paths[i].path))); return allowedp; } return true;