Support gring as a first-class conversion specifier in internal string-formatting
[exim.git] / src / src / transports / lmtp.c
index e04c991ab703da149bc200adb1d6324c282f9f9f..776c40e05070692406b3c9739bbd9ce853fe02ff 100644 (file)
@@ -241,7 +241,7 @@ if (!string_vformat(&gs, SVFMT_TAINT_NOCHK, CS format, ap))
   return FALSE;
   }
 va_end(ap);
-DEBUG(D_transport|D_v) debug_printf("  LMTP>> %s", string_from_gstring(&gs));
+DEBUG(D_transport|D_v) debug_printf("  LMTP>> %Y", &gs);
 rc = write(fd, gs.s, gs.ptr);
 gs.ptr -= 2; string_from_gstring(&gs); /* remove \r\n for debug and error message */
 if (rc > 0) return TRUE;