diff options
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/dprintf.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/source3/lib/dprintf.c b/source3/lib/dprintf.c index 964d63c72f..b74d0ba17c 100644 --- a/source3/lib/dprintf.c +++ b/source3/lib/dprintf.c @@ -36,8 +36,15 @@ int d_vfprintf(FILE *f, const char *format, va_list ap) { char *p, *p2; int ret, maxlen, clen; - - ret = vasprintf(&p, format, ap); + const char *msgstr; + + /* do any message translations */ + msgstr = lang_msg(format); + if (!msgstr) return -1; + + ret = vasprintf(&p, msgstr, ap); + + lang_msg_free(msgstr); if (ret <= 0) return ret; |