From: Frank Ch. Eigler Date: Mon, 17 Oct 2022 14:07:39 +0000 (-0400) Subject: debuginfod: report libmicrohttpd version on startup X-Git-Tag: elfutils-0.188~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4cc429d2761846967678fb8cf5868d311d1f7862;p=thirdparty%2Felfutils.git debuginfod: report libmicrohttpd version on startup To assist troubleshooting with intermittent bugs. Signed-off-by: Frank Ch. Eigler --- diff --git a/debuginfod/ChangeLog b/debuginfod/ChangeLog index 8fb65133f..59d50df1f 100644 --- a/debuginfod/ChangeLog +++ b/debuginfod/ChangeLog @@ -1,3 +1,7 @@ +2022-10-17 Frank Ch. Eigler + + * debuginfod.cxx (main): Report libmicrohttpd version. + 2022-09-28 Aaron Merey * debuginfod-client.c (debuginfod_query_server): Switch sign of some diff --git a/debuginfod/debuginfod.cxx b/debuginfod/debuginfod.cxx index 8e7ee4997..9dc4836bb 100644 --- a/debuginfod/debuginfod.cxx +++ b/debuginfod/debuginfod.cxx @@ -3956,6 +3956,8 @@ main (int argc, char *argv[]) } } + obatched(clog) << "libmicrohttpd version " << MHD_get_version() << endl; + /* If '-C' wasn't given or was given with no arg, pick a reasonable default for the number of worker threads. */ if (connection_pool == 0)