Fixed 'int' instead of 'MHD_Result'

This commit is contained in:
Evgeny Grin (Karlson2k)
2023-03-31 18:50:21 +02:00
parent c21c5769af
commit f5bb3f5cf4
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1355,7 +1355,7 @@ MHD_queue_auth_fail_response2 (struct MHD_Connection *connection,
int signal_stale,
enum MHD_DigestAuthAlgorithm algo)
{
int ret;
enum MHD_Result ret;
int hlen;
SETUP_DA (algo, da);
+2 -2
View File
@@ -485,7 +485,7 @@ process_value (struct MHD_PostProcessor *pp,
* @param post_data_len number of bytes in @a post_data
* @return #MHD_YES on success, #MHD_NO if there was an error processing the data
*/
static int
static enum MHD_Result
post_process_urlencoded (struct MHD_PostProcessor *pp,
const char *post_data,
size_t post_data_len)
@@ -1154,7 +1154,7 @@ free_unmarked (struct MHD_PostProcessor *pp)
* @param post_data_len number of bytes in @a post_data
* @return #MHD_NO on error,
*/
static int
static enum MHD_Result
post_process_multipart (struct MHD_PostProcessor *pp,
const char *post_data,
size_t post_data_len)