1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00

1008: finish renaming http_read_post_data to read_http_post

Fix the compilation error caused in the previous commit.
This commit is contained in:
Kalle Olavi Niemitalo 2008-06-02 01:06:23 +03:00 committed by Kalle Olavi Niemitalo
parent 4768243d0c
commit 0a95ae85ab

View File

@ -790,7 +790,7 @@ send_more_post_data(struct socket *socket)
unsigned char buffer[POST_BUFFER_SIZE];
int got;
got = http_read_post_data(&http->post, buffer, POST_BUFFER_SIZE);
got = read_http_post(&http->post, buffer, POST_BUFFER_SIZE);
if (got < 0) {
http_end_request(conn, -errno, 0);
} else if (got > 0) {