receive_and_send_encrypted_post_data(): Change return code to int to match reality
authorFabian Keil <fk@fabiankeil.de>
Mon, 25 May 2020 10:07:56 +0000 (12:07 +0200)
committerFabian Keil <fk@fabiankeil.de>
Mon, 25 May 2020 11:34:30 +0000 (13:34 +0200)
Sponsored by: Robert Klemme

jcc.c

diff --git a/jcc.c b/jcc.c
index f76b2f7..d40265d 100644 (file)
--- a/jcc.c
+++ b/jcc.c
@@ -2049,7 +2049,7 @@ static int send_http_request(struct client_state *csp)
  * Returns     :  0 on success, anything else is an error.
  *
  *********************************************************************/
  * Returns     :  0 on success, anything else is an error.
  *
  *********************************************************************/
-static jb_err receive_and_send_encrypted_post_data(struct client_state *csp)
+static int receive_and_send_encrypted_post_data(struct client_state *csp)
 {
    int content_length_known = csp->expected_client_content_length != 0;
 
 {
    int content_length_known = csp->expected_client_content_length != 0;