summaryrefslogtreecommitdiff
path: root/src/ostree/ot-admin-builtin-diff.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-09-15 15:06:31 -0400
committerColin Walters <walters@verbum.org>2013-09-15 15:06:31 -0400
commit35bab87691fc0997e13f40680fbb9afd416ce1b9 (patch)
tree438f6ca76ccf6a241472a5f55a4c6ea6fdc8e1a5 /src/ostree/ot-admin-builtin-diff.c
parentaf0f888057b5af2377f89e9602451ed8e61a5a80 (diff)
downloadostree-35bab87691fc0997e13f40680fbb9afd416ce1b9.tar.gz
Move Deployment and BootconfigParser into libostree
As part of moving admin functionality there. While we are doing this, rename OtConfigParser to OstreeBootConfig parser since it's a better name.
Diffstat (limited to 'src/ostree/ot-admin-builtin-diff.c')
-rw-r--r--src/ostree/ot-admin-builtin-diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ostree/ot-admin-builtin-diff.c b/src/ostree/ot-admin-builtin-diff.c
index e64fe7ea..c3f0e845 100644
--- a/src/ostree/ot-admin-builtin-diff.c
+++ b/src/ostree/ot-admin-builtin-diff.c
@@ -42,7 +42,7 @@ ot_admin_builtin_diff (int argc, char **argv, OstreeSysroot *sysroot, GCancellab
GOptionContext *context;
gboolean ret = FALSE;
gs_unref_object GFile *repo_path = NULL;
- gs_unref_object OtDeployment *deployment = NULL;
+ gs_unref_object OstreeDeployment *deployment = NULL;
gs_unref_object GFile *deployment_dir = NULL;
gs_unref_ptrarray GPtrArray *modified = NULL;
gs_unref_ptrarray GPtrArray *removed = NULL;
@@ -73,7 +73,7 @@ ot_admin_builtin_diff (int argc, char **argv, OstreeSysroot *sysroot, GCancellab
cancellable, error))
goto out;
if (deployment != NULL)
- opt_osname = (char*)ot_deployment_get_osname (deployment);
+ opt_osname = (char*)ostree_deployment_get_osname (deployment);
if (deployment == NULL)
deployment = ot_admin_get_merge_deployment (deployments, opt_osname, deployment);
if (deployment == NULL)