1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

ftp_process_dirlist: Rename local variable bufp to line_length.

This commit is contained in:
Miciah Dashiel Butler Masters 2006-06-09 21:46:47 +00:00 committed by Miciah Dashiel Butler Masters
parent 71ec83c0de
commit 14595404d1

View File

@ -1197,17 +1197,17 @@ ftp_process_dirlist(struct cache_entry *cached, off_t *pos,
struct ftp_file_info ftp_info = INIT_FTP_FILE_INFO; struct ftp_file_info ftp_info = INIT_FTP_FILE_INFO;
unsigned char *buf = buffer + ret; unsigned char *buf = buffer + ret;
int bufl = buflen - ret; int bufl = buflen - ret;
int bufp, eol; int line_length, eol;
eol = ftp_get_line(cached, buf, bufl, last, &bufp); eol = ftp_get_line(cached, buf, bufl, last, &line_length);
if (eol == -1) if (eol == -1)
return ret; return ret;
ret += bufp + eol; ret += line_length + eol;
/* Process line whose end we've already found. */ /* Process line whose end we've already found. */
if (parse_ftp_file_info(&ftp_info, buf, bufp)) { if (parse_ftp_file_info(&ftp_info, buf, line_length)) {
int retv; int retv;
if ((ftp_info.name.length == 1 && ftp_info.name.source[0] == '.') if ((ftp_info.name.length == 1 && ftp_info.name.source[0] == '.')
@ -1223,7 +1223,7 @@ ftp_process_dirlist(struct cache_entry *cached, off_t *pos,
} }
#ifdef DEBUG_FTP_PARSER #ifdef DEBUG_FTP_PARSER
else { else {
ERROR("Error parsing: [%.*s]", bufp, buf); ERROR("Error parsing: [%.*s]", line_length, buf);
} }
#endif #endif
} }