summaryrefslogtreecommitdiff
path: root/source/intl
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-09-26 01:24:09 +0000
committerTim Potter <tpot@samba.org>2003-09-26 01:24:09 +0000
commit8ce279e47184623e74f795294ffba842e4f2e848 (patch)
treefee20de96db1e60a021080c47d2881f46f0d0fc8 /source/intl
parent1e098b5b17b0fa505c528305c75d3c972935b100 (diff)
downloadsamba-8ce279e47184623e74f795294ffba842e4f2e848.tar.gz
Allow d_printf() to handle strings with escaped quotation marks since the
msg file includes the escape character. Fixes bug #489.
Diffstat (limited to 'source/intl')
-rw-r--r--source/intl/lang_tdb.c35
1 files changed, 33 insertions, 2 deletions
diff --git a/source/intl/lang_tdb.c b/source/intl/lang_tdb.c
index 5409ce6619d..af70b529ff9 100644
--- a/source/intl/lang_tdb.c
+++ b/source/intl/lang_tdb.c
@@ -176,16 +176,47 @@ BOOL lang_tdb_init(const char *lang)
const char *lang_msg(const char *msgid)
{
TDB_DATA key, data;
+ char *p, *q, *msgid_quoted;
+ int count;
lang_tdb_init(NULL);
if (!tdb) return msgid;
- key.dptr = (char *)msgid;
- key.dsize = strlen(msgid)+1;
+ /* Due to the way quotes in msgids are escaped in the msg file we
+ must replace " with \" before doing a lookup in the tdb. */
+
+ count = 0;
+
+ for(p = msgid; *p; p++) {
+ if (*p == '\"')
+ count++;
+ }
+
+ if (!(msgid_quoted = malloc(strlen(msgid) + count + 1)))
+ return msgid;
+
+ /* string_sub() is unsuitable here as it replaces some punctuation
+ chars with underscores. */
+
+ for(p = msgid, q = msgid_quoted; *p; p++) {
+ if (*p == '\"') {
+ *q = '\\';
+ q++;
+ }
+ *q = *p;
+ q++;
+ }
+
+ *q = 0;
+
+ key.dptr = (char *)msgid_quoted;
+ key.dsize = strlen(msgid_quoted)+1;
data = tdb_fetch(tdb, key);
+ free(msgid_quoted);
+
/* if the message isn't found then we still need to return a pointer
that can be freed. Pity. */
if (!data.dptr)