From 8067e977a7280f3033406b208569464ffb630e92 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 15 Dec 2014 13:59:46 -0500 Subject: [PATCH] repo: (cleanup) Use _is_system() rather than inlining it No reason to duplicate the code. --- src/libostree/ostree-repo.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/libostree/ostree-repo.c b/src/libostree/ostree-repo.c index 4f2fc9aa..b627046b 100644 --- a/src/libostree/ostree-repo.c +++ b/src/libostree/ostree-repo.c @@ -1236,15 +1236,11 @@ ostree_repo_open (OstreeRepo *self, ostree_repo_set_disable_fsync (self, TRUE); } - { - gs_unref_object GFile *default_repo_path = get_default_repo_path (); - - if (g_file_equal (self->repodir, default_repo_path)) - { - if (!append_remotes_d (self, cancellable, error)) - goto out; - } - } + if (ostree_repo_is_system (self)) + { + if (!append_remotes_d (self, cancellable, error)) + goto out; + } if (!gs_file_open_dir_fd (self->tmp_dir, &self->tmp_dir_fd, cancellable, error)) goto out;