fix sftp directory listing so that it works without -v and is redirectable with -o/-O.
diff --git a/lib/ssh.c b/lib/ssh.c
index cad2f07..ed38802 100644
--- a/lib/ssh.c
+++ b/lib/ssh.c
@@ -807,7 +807,8 @@
                                 filename);
           }
 
-          infof(data, "%s\n", line);
+          currLen += snprintf(line+currLen, totalLen-currLen, "\n");
+          res = Curl_client_write(conn, CLIENTWRITE_BOTH, line, 0);
           free(line);
         }
       }