[ostree] repo: (cleanup) Use _is_system() rather than inlining it



commit 8067e977a7280f3033406b208569464ffb630e92
Author: Colin Walters <walters verbum org>
Date:   Mon Dec 15 13:59:46 2014 -0500

    repo: (cleanup) Use _is_system() rather than inlining it
    
    No reason to duplicate the code.

 src/libostree/ostree-repo.c |   14 +++++---------
 1 files changed, 5 insertions(+), 9 deletions(-)
---
diff --git a/src/libostree/ostree-repo.c b/src/libostree/ostree-repo.c
index 4f2fc9a..b627046 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;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]