Debug: feed startup "whats supported" info through normal debug channel
[exim.git] / src / src / lookups / spf.c
index 179b3a648d1d1b123d27908d5e35eaadf92df0bd..9be118183975d7107662e961f508f3c0981a4a54 100644 (file)
@@ -128,12 +128,13 @@ return OK;
 
 #include "../version.h"
 
-void
-spf_version_report(FILE *f)
+gstring *
+spf_version_report(gstring * g)
 {
 #ifdef DYNLOOKUP
-fprintf(f, "Library version: SPF: Exim version %s\n", EXIM_VERSION_STR);
+g = string_fmt_append(g, "Library version: SPF: Exim version %s\n", EXIM_VERSION_STR));
 #endif
+return g;
 }