Debug: feed startup "whats supported" info through normal debug channel
[exim.git] / src / src / lookups / cdb.c
index b11f5f7d573119025f4e35b6704e0b9629853ccd..7b9c2cdfd2107b211405a42885d702c580191818 100644 (file)
@@ -458,12 +458,13 @@ if (cdbp->cdb_map)
 
 #include "../version.h"
 
-void
-cdb_version_report(FILE *f)
+gstring *
+cdb_version_report(gstring * g)
 {
 #ifdef DYNLOOKUP
-fprintf(f, "Library version: CDB: Exim version %s\n", EXIM_VERSION_STR);
+g = string_fmt_append(g, "Library version: CDB: Exim version %s\n", EXIM_VERSION_STR);
 #endif
+return g;
 }