From Jim Young:

Fixed reading uat personal files before global files.

This fixes bug 2070.

svn path=/trunk/; revision=23883
This commit is contained in:
Stig Bjørlykke 2007-12-16 13:17:37 +00:00
parent 672659c0c2
commit 0238daecf6
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ gchar* uat_get_actual_filename(uat_t* uat, gboolean for_writing) {
if (! for_writing ) {
gchar* data_fname = get_datafile_path(uat->filename);
if (file_exists(data_fname)) {
if ((! file_exists(pers_fname) ) && file_exists(data_fname)) {
return data_fname;
}
}