diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-25 13:39:24 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-25 13:39:24 +0100 |
commit | 3581c625151d25d8e1cbc80c44337d398d97cf42 (patch) | |
tree | 86a1abc69a3606e6f595a18d72bd1eb48bc505b3 /networking/ftpd.c | |
parent | 46685a46bbffc04d507ce756f4b703aae024debd (diff) | |
download | busybox-w32-3581c625151d25d8e1cbc80c44337d398d97cf42.tar.gz busybox-w32-3581c625151d25d8e1cbc80c44337d398d97cf42.tar.bz2 busybox-w32-3581c625151d25d8e1cbc80c44337d398d97cf42.zip |
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ftpd.c')
-rw-r--r-- | networking/ftpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ftpd.c b/networking/ftpd.c index fdc6f5e45..b7d5b20b1 100644 --- a/networking/ftpd.c +++ b/networking/ftpd.c | |||
@@ -716,7 +716,7 @@ handle_dir_common(int opts) | |||
716 | /* STAT <filename> */ | 716 | /* STAT <filename> */ |
717 | cmdio_write_raw(STR(FTP_STATFILE_OK)"-File status:\r\n"); | 717 | cmdio_write_raw(STR(FTP_STATFILE_OK)"-File status:\r\n"); |
718 | while (1) { | 718 | while (1) { |
719 | line = xmalloc_fgetline(ls_fp); | 719 | line = xmalloc_fgetline(ls_fp); |
720 | if (!line) | 720 | if (!line) |
721 | break; | 721 | break; |
722 | /* Hack: 0 results in no status at all */ | 722 | /* Hack: 0 results in no status at all */ |
@@ -731,7 +731,7 @@ handle_dir_common(int opts) | |||
731 | int remote_fd = get_remote_transfer_fd(" Directory listing"); | 731 | int remote_fd = get_remote_transfer_fd(" Directory listing"); |
732 | if (remote_fd >= 0) { | 732 | if (remote_fd >= 0) { |
733 | while (1) { | 733 | while (1) { |
734 | line = xmalloc_fgetline(ls_fp); | 734 | line = xmalloc_fgetline(ls_fp); |
735 | if (!line) | 735 | if (!line) |
736 | break; | 736 | break; |
737 | /* I've seen clients complaining when they | 737 | /* I've seen clients complaining when they |