From 225cebd5ef90fdb093de770b495e1f99a20a8f1f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 10 May 2012 21:00:48 -0400 Subject: [PATCH] core: fix a typo ostree config had two 'set' subcommands, but no 'get'. --- src/ostree/ot-builtin-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ostree/ot-builtin-config.c b/src/ostree/ot-builtin-config.c index c8964098..cac751da 100644 --- a/src/ostree/ot-builtin-config.c +++ b/src/ostree/ot-builtin-config.c @@ -104,7 +104,7 @@ ostree_builtin_config (int argc, char **argv, GFile *repo_path, GError **error) if (!ostree_repo_write_config (repo, config, error)) goto out; } - else if (!strcmp (op, "set")) + else if (!strcmp (op, "get")) { GKeyFile *readonly_config = NULL; ot_lfree char *value = NULL;