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