aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2021-05-07 07:27:37 -0300
committerDavid Bremner <david@tethera.net>2021-05-10 11:12:58 -0300
commit1040e7aa077197e5295180ef54576ea39c298a36 (patch)
treec910c7c734355c2ad7fda1db4c13ecc80c66b9c8 /lib
parent322a492c77725b265cb7f5c1d0bed5dee6999743 (diff)
lib/config: expand relative paths when reading from database
This makes the treatment of relative paths consistent between the database and config files.
Diffstat (limited to 'lib')
-rw-r--r--lib/config.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/config.cc b/lib/config.cc
index abdc19c3..0ec66372 100644
--- a/lib/config.cc
+++ b/lib/config.cc
@@ -46,6 +46,7 @@ struct _notmuch_config_pairs {
};
static const char *_notmuch_config_key_to_string (notmuch_config_key_t key);
+static char *_expand_path (void *ctx, const char *key, const char *val);
static int
_notmuch_config_list_destroy (notmuch_config_list_t *list)
@@ -257,9 +258,10 @@ _notmuch_config_load_from_database (notmuch_database_t *notmuch)
return status;
for (; notmuch_config_list_valid (list); notmuch_config_list_move_to_next (list)) {
- _notmuch_string_map_append (notmuch->config,
- notmuch_config_list_key (list),
- notmuch_config_list_value (list));
+ const char *key = notmuch_config_list_key (list);
+ char *normalized_val = _expand_path (list, key, notmuch_config_list_value (list));
+ _notmuch_string_map_append (notmuch->config, key, normalized_val);
+ talloc_free (normalized_val);
}
return status;