mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-26 04:09:30 +03:00
Fixed 'int' instead of 'MHD_Result'
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user