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:
parent
4768243d0c
commit
0a95ae85ab
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user