]> sjero.net Git - wget/commitdiff
Further quote*()-related integrations in ftp-basic.c.
authorSteven Schubiger <schubiger@gmail.com>
Fri, 25 Apr 2008 20:38:51 +0000 (22:38 +0200)
committerSteven Schubiger <schubiger@gmail.com>
Fri, 25 Apr 2008 20:38:51 +0000 (22:38 +0200)
src/ftp-basic.c

index 38f0069fa394637e58b990b33ea54add4785be74..36b11bcacd1054db06eb65c982d6ee4f0f5a4c11 100644 (file)
@@ -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;
         }