Debug: feed startup "whats supported" info through normal debug channel
[exim.git] / src / src / lookups / dbmdb.c
index 508083361151652cc922005d60880ecb7ef66566..c53e5555446ae342867a911751ec9f64bd45caf4 100644 (file)
@@ -227,12 +227,13 @@ EXIM_DBCLOSE((EXIM_DB *)handle);
 
 #include "../version.h"
 
-void
-dbm_version_report(FILE *f)
+gstring *
+dbm_version_report(gstring * g)
 {
 #ifdef DYNLOOKUP
-fprintf(f, "Library version: DBM: Exim version %s\n", EXIM_VERSION_STR);
+g = string_fmt_append(g, "Library version: DBM: Exim version %s\n", EXIM_VERSION_STR);
 #endif
+return g;
 }