diff options
Diffstat (limited to 'core/load-git.c')
-rw-r--r-- | core/load-git.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/load-git.c b/core/load-git.c index 670658d1b..abe1a5ad0 100644 --- a/core/load-git.c +++ b/core/load-git.c @@ -811,7 +811,7 @@ static void parse_settings_userid(char *line, struct membuffer *str, void *_unus (void) str; (void) _unused; if (line) { - set_save_userid_local(true); + prefs.save_userid_local = true; set_userid(line); } } @@ -1520,7 +1520,7 @@ static int parse_settings_entry(git_repository *repo, const git_tree_entry *entr git_blob *blob = git_tree_entry_blob(repo, entry); if (!blob) return report_error("Unable to read settings file"); - set_save_userid_local(false); + prefs.save_userid_local = false; for_each_line(blob, settings_parser, NULL); git_blob_free(blob); return 0; |