Debug: feed startup "whats supported" info through normal debug channel
[exim.git] / src / src / lookups / dsearch.c
index 2cf880ddae9758fa425a918e7b3cb4ea97ddae11..80000f14a3575e2ff92cb34045182961e386ef55 100644 (file)
@@ -158,12 +158,13 @@ handle = handle;   /* Avoid compiler warning */
 
 #include "../version.h"
 
-void
-dsearch_version_report(FILE *f)
+gstring *
+dsearch_version_report(gstring * g)
 {
 #ifdef DYNLOOKUP
-fprintf(f, "Library version: dsearch: Exim version %s\n", EXIM_VERSION_STR);
+g = string_fmt_append(g, "Library version: dsearch: Exim version %s\n", EXIM_VERSION_STR);
 #endif
+return g;
 }