summaryrefslogtreecommitdiff
path: root/src/ostree/ot-builtin-checksum.c
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-12-09 12:40:41 -0500
committerColin Walters <walters@verbum.org>2011-12-12 12:29:09 -0500
commitb8e8b58585862a5358b5d924ecb2cc921df831c0 (patch)
tree74b03669615c1733906029d3006c9e17500101ff /src/ostree/ot-builtin-checksum.c
parentdb9b7b7be6d45d628bed60ce96b51bc3768b2702 (diff)
downloadostree-b8e8b58585862a5358b5d924ecb2cc921df831c0.tar.gz
core: INCOMPATIBLE CHANGE: Name repo files with their type (e.g. .dirmeta)
This makes inspection easier. Internally the code gets simpler because metadata and files are more unified; there is just one object type.
Diffstat (limited to 'src/ostree/ot-builtin-checksum.c')
-rw-r--r--src/ostree/ot-builtin-checksum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ostree/ot-builtin-checksum.c b/src/ostree/ot-builtin-checksum.c
index 48511339..911482e6 100644
--- a/src/ostree/ot-builtin-checksum.c
+++ b/src/ostree/ot-builtin-checksum.c
@@ -79,7 +79,7 @@ ostree_builtin_checksum (int argc, char **argv, const char *repo_path, GError **
data.loop = g_main_loop_new (NULL, FALSE);
data.error = error;
- ostree_checksum_file_async (f, OSTREE_OBJECT_TYPE_FILE, G_PRIORITY_DEFAULT, NULL, on_checksum_received, &data);
+ ostree_checksum_file_async (f, OSTREE_OBJECT_TYPE_RAW_FILE, G_PRIORITY_DEFAULT, NULL, on_checksum_received, &data);
g_main_loop_run (data.loop);