summaryrefslogtreecommitdiff
path: root/source3/lib/dprintf.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-10-11 08:40:42 +0000
committerAndrew Tridgell <tridge@samba.org>2001-10-11 08:40:42 +0000
commit8cec5cf35f17568009c70d37bb8b2a1f360d3422 (patch)
treefa7146c88d50687390a8a909571cc97b96d37485 /source3/lib/dprintf.c
parentd5a62df4c569e5f82186900c5770c59a5c384587 (diff)
downloadsamba-8cec5cf35f17568009c70d37bb8b2a1f360d3422.tar.gz
samba-8cec5cf35f17568009c70d37bb8b2a1f360d3422.tar.bz2
samba-8cec5cf35f17568009c70d37bb8b2a1f360d3422.zip
first step in converting the head branch to use lang_tdb.c instead
of gettext for internationalisation support. There is more to do (This used to be commit ab7f67677a1ade4669e5c2750d0a38422ea616a9)
Diffstat (limited to 'source3/lib/dprintf.c')
-rw-r--r--source3/lib/dprintf.c11
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;