From b23251aac217c8f367820a817712eb5fa5b56228 Mon Sep 17 00:00:00 2001 From: Steven Schubiger Date: Fri, 25 Apr 2008 22:38:51 +0200 Subject: [PATCH] Further quote*()-related integrations in ftp-basic.c. --- src/ftp-basic.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/ftp-basic.c b/src/ftp-basic.c index 38f0069f..36b11bca 100644 --- a/src/ftp-basic.c +++ b/src/ftp-basic.c @@ -76,9 +76,10 @@ ftp_response (int fd, char **ret_line) *--p = '\0'; if (opt.server_response) - logprintf (LOG_NOTQUIET, "%s\n", escnonprint (line)); + logprintf (LOG_NOTQUIET, "%s\n", + quotearg_style (escape_quoting_style, line)); else - DEBUGP (("%s\n", escnonprint (line))); + DEBUGP (("%s\n", quotearg_style (escape_quoting_style, line))); /* The last line of output is the one that begins with "ddd ". */ if (c_isdigit (line[0]) && c_isdigit (line[1]) && c_isdigit (line[2]) @@ -116,7 +117,8 @@ ftp_request (const char *command, const char *value) if (*p == '\r' || *p == '\n') *p = ' '; DEBUGP (("\nDetected newlines in %s \"%s\"; changing to %s \"%s\"\n", - command, escnonprint (value), command, escnonprint (defanged))); + command, quotearg_style (escape_quoting_style, value), + command, quotearg_style (escape_quoting_style, defanged))); /* Make VALUE point to the defanged copy of the string. */ value = defanged; } -- 2.39.2