aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/ftpgetput.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c
index f6bd82bc8..02c21d9e1 100644
--- a/networking/ftpgetput.c
+++ b/networking/ftpgetput.c
@@ -65,9 +65,9 @@ static int ftpcmd(const char *s1, const char *s2, FILE *stream, char *buf)
65 65
66 if (s1) { 66 if (s1) {
67 if (s2) { 67 if (s2) {
68 fprintf(stream, "%s%s\n", s1, s2); 68 fprintf(stream, "%s%s\r\n", s1, s2);
69 } else { 69 } else {
70 fprintf(stream, "%s\n", s1); 70 fprintf(stream, "%s\r\n", s1);
71 } 71 }
72 } 72 }
73 do { 73 do {