mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
notmuch: Database paths without a leading / are relative to $HOME
If the database path specified in the configuration file does *not* start with a /, presume that it is relative to $HOME and modify the path used to open the database accordingly.
This commit is contained in:
parent
87934c432c
commit
95a9c73c72
1 changed files with 13 additions and 1 deletions
|
@ -660,7 +660,19 @@ _config_set_list (notmuch_config_t *config,
|
|||
const char *
|
||||
notmuch_config_get_database_path (notmuch_config_t *config)
|
||||
{
|
||||
return _config_get (config, &config->database_path, "database", "path");
|
||||
char *db_path = (char *)_config_get (config, &config->database_path, "database", "path");
|
||||
|
||||
if (db_path && *db_path != '/') {
|
||||
/* If the path in the configuration file begins with any
|
||||
* character other than /, presume that it is relative to
|
||||
* $HOME and update as appropriate.
|
||||
*/
|
||||
char *abs_path = talloc_asprintf (config, "%s/%s", getenv ("HOME"), db_path);
|
||||
talloc_free (db_path);
|
||||
db_path = config->database_path = abs_path;
|
||||
}
|
||||
|
||||
return db_path;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue