6f381c
From ca86de228e19cea268ec3eeabc9097d7c28fbf24 Mon Sep 17 00:00:00 2001
6f381c
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
6f381c
Date: Tue, 30 Jun 2020 09:56:10 +0200
6f381c
Subject: [PATCH] =?UTF-8?q?Fix=20build=20with=20=C2=B5httpd=200.9.71?=
6f381c
MIME-Version: 1.0
6f381c
Content-Type: text/plain; charset=UTF-8
6f381c
Content-Transfer-Encoding: 8bit
6f381c
6f381c
The return type of callbacks was changed from int to an enum.
6f381c
6f381c
(cherry picked from commit d17eabb1052e7c8c432331a7a782845e36164f01)
6f381c
6f381c
Related: #2122499
6f381c
---
6f381c
 src/journal-remote/journal-gatewayd.c    | 4 ++--
6f381c
 src/journal-remote/journal-remote-main.c | 2 +-
6f381c
 src/journal-remote/microhttpd-util.h     | 6 ++++++
6f381c
 3 files changed, 9 insertions(+), 3 deletions(-)
6f381c
6f381c
diff --git a/src/journal-remote/journal-gatewayd.c b/src/journal-remote/journal-gatewayd.c
6f381c
index 54446ff7b5..3ff05a4d72 100644
6f381c
--- a/src/journal-remote/journal-gatewayd.c
6f381c
+++ b/src/journal-remote/journal-gatewayd.c
6f381c
@@ -338,7 +338,7 @@ static int request_parse_range(
6f381c
         return 0;
6f381c
 }
6f381c
 
6f381c
-static int request_parse_arguments_iterator(
6f381c
+static mhd_result request_parse_arguments_iterator(
6f381c
                 void *cls,
6f381c
                 enum MHD_ValueKind kind,
6f381c
                 const char *key,
6f381c
@@ -795,7 +795,7 @@ static int request_handler_machine(
6f381c
         return MHD_queue_response(connection, MHD_HTTP_OK, response);
6f381c
 }
6f381c
 
6f381c
-static int request_handler(
6f381c
+static mhd_result request_handler(
6f381c
                 void *cls,
6f381c
                 struct MHD_Connection *connection,
6f381c
                 const char *url,
6f381c
diff --git a/src/journal-remote/journal-remote-main.c b/src/journal-remote/journal-remote-main.c
6f381c
index bcaa370099..a1008db6eb 100644
6f381c
--- a/src/journal-remote/journal-remote-main.c
6f381c
+++ b/src/journal-remote/journal-remote-main.c
6f381c
@@ -241,7 +241,7 @@ static int process_http_upload(
6f381c
         return mhd_respond(connection, MHD_HTTP_ACCEPTED, "OK.");
6f381c
 };
6f381c
 
6f381c
-static int request_handler(
6f381c
+static mhd_result request_handler(
6f381c
                 void *cls,
6f381c
                 struct MHD_Connection *connection,
6f381c
                 const char *url,
6f381c
diff --git a/src/journal-remote/microhttpd-util.h b/src/journal-remote/microhttpd-util.h
6f381c
index dd0ca1d9bd..792c07ac20 100644
6f381c
--- a/src/journal-remote/microhttpd-util.h
6f381c
+++ b/src/journal-remote/microhttpd-util.h
6f381c
@@ -51,6 +51,12 @@
6f381c
 #  define MHD_create_response_from_fd_at_offset64 MHD_create_response_from_fd_at_offset
6f381c
 #endif
6f381c
 
6f381c
+#if MHD_VERSION >= 0x00097002
6f381c
+#  define mhd_result enum MHD_Result
6f381c
+#else
6f381c
+#  define mhd_result int
6f381c
+#endif
6f381c
+
6f381c
 void microhttpd_logger(void *arg, const char *fmt, va_list ap) _printf_(2, 0);
6f381c
 
6f381c
 /* respond_oom() must be usable with return, hence this form. */