core: fix a typo

ostree config had two 'set' subcommands, but no 'get'.
This commit is contained in:
Matthias Clasen 2012-05-10 21:00:48 -04:00 committed by Colin Walters
parent 4fa14eb712
commit 225cebd5ef

View File

@ -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;