summaryrefslogtreecommitdiff
path: root/source3/intl
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-09-19 07:04:29 +0000
committerTim Potter <tpot@samba.org>2003-09-19 07:04:29 +0000
commit84aea8346ef0b4b44fb94fb4640687ca525107a7 (patch)
tree9d620cb7407c54ba9f78fdb33863aa05bd212417 /source3/intl
parent804fca6e4966eea946776ea3ad46eb6eab41385f (diff)
downloadsamba-84aea8346ef0b4b44fb94fb4640687ca525107a7.tar.gz
Put in some DEBUGs for swat language selection. Part of bug 456.
(This used to be commit bbe4ae8af2918808a1fd3547602c909f42a54634)
Diffstat (limited to 'source3/intl')
-rw-r--r--source3/intl/lang_tdb.c35
1 files changed, 22 insertions, 13 deletions
diff --git a/source3/intl/lang_tdb.c b/source3/intl/lang_tdb.c
index f12b9b6f151..2dbb0ba4d85 100644
--- a/source3/intl/lang_tdb.c
+++ b/source3/intl/lang_tdb.c
@@ -99,10 +99,12 @@ BOOL lang_tdb_init(const char *lang)
struct stat st;
static int initialised;
time_t loadtime;
+ BOOL result = False;
/* we only want to init once per process, unless given
an override */
- if (initialised && !lang) return True;
+ if (initialised && !lang)
+ return True;
if (initialised) {
/* we are re-initialising, free up any old init */
@@ -121,41 +123,48 @@ BOOL lang_tdb_init(const char *lang)
}
/* if no lang then we don't translate */
- if (!lang) return True;
+ if (!lang)
+ return True;
asprintf(&msg_path, "%s.msg", lib_path((const char *)lang));
if (stat(msg_path, &st) != 0) {
/* the msg file isn't available */
- free(msg_path);
- return False;
+ DEBUG(10, ("lang_tdb_init: %s: %s", msg_path,
+ strerror(errno)));
+ goto done;
}
-
asprintf(&path, "%s%s.tdb", lock_path("lang_"), lang);
+ DEBUG(10, ("lang_tdb_init: loading %s\n", path));
+
tdb = tdb_open_log(path, 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0644);
if (!tdb) {
tdb = tdb_open_log(path, 0, TDB_DEFAULT, O_RDONLY, 0);
- free(path);
- free(msg_path);
- if (!tdb) return False;
+ if (!tdb) {
+ DEBUG(10, ("lang_tdb_init: %s: %s\n", path,
+ strerror(errno)));
+ goto done;
+ }
current_lang = strdup(lang);
- return True;
+ result = True;
+ goto done;
}
- free(path);
-
loadtime = tdb_fetch_int32(tdb, "/LOADTIME/");
if (loadtime == -1 || loadtime < st.st_mtime) {
load_msg(msg_path);
tdb_store_int32(tdb, "/LOADTIME/", (int)time(NULL));
}
- free(msg_path);
current_lang = strdup(lang);
- return True;
+ done:
+ SAFE_FREE(msg_path);
+ SAFE_FREE(path);
+
+ return result;
}
/* translate a msgid to a message string in the current language