1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

ftp_get_line: Reflow some code.

This commit is contained in:
Miciah Dashiel Butler Masters 2006-06-09 21:43:36 +00:00 committed by Miciah Dashiel Butler Masters
parent 2d49225db3
commit 71ec83c0de

View File

@ -1175,14 +1175,14 @@ ftp_get_line(struct cache_entry *cached, unsigned char *buf, int bufl,
} else { } else {
return 1; return 1;
} }
} else {
if (last || bufl >= FTP_BUF_SIZE) {
*len = bufl;
return 0;
}
return -1;
} }
if (last || bufl >= FTP_BUF_SIZE) {
*len = bufl;
return 0;
}
return -1;
} }
/* List a directory in html format. */ /* List a directory in html format. */