diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-08-22 00:08:28 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-08-22 00:08:28 +0200 |
commit | a199ba7fe61d1ea0aa7f9dcd4083ae2e52546c40 (patch) | |
tree | f2b9992c964d3979a95fd31223445bff4b65730e /src/mhd/mhd_parsing.c | |
parent | a5b9fce18310364052f0455f971e139297bfa507 (diff) |
-fix some clang warnings
Diffstat (limited to 'src/mhd/mhd_parsing.c')
-rw-r--r-- | src/mhd/mhd_parsing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mhd/mhd_parsing.c b/src/mhd/mhd_parsing.c index bae10e724..ee647f4b7 100644 --- a/src/mhd/mhd_parsing.c +++ b/src/mhd/mhd_parsing.c @@ -60,7 +60,7 @@ TALER_MHD_parse_post_json (struct MHD_Connection *connection, GNUNET_break (NULL == *json); GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Closing connection, upload too large\n"); - return MHD_NO; + return GNUNET_SYSERR; case GNUNET_JSON_PR_JSON_INVALID: GNUNET_break (NULL == *json); return (MHD_YES == |