From 7311eff800d54789d2db49d894882dbbe78cf875 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Fri, 8 Jun 2018 14:30:45 +0200 Subject: [PATCH] Fix regression with --own=name We deleted the "filtered" policy, but forgot to delete it in one place. This fixes https://github.com/flatpak/flatpak/issues/1761 --- common/flatpak-context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/flatpak-context.c b/common/flatpak-context.c index 7bf7545e..9343d1fd 100644 --- a/common/flatpak-context.c +++ b/common/flatpak-context.c @@ -196,7 +196,7 @@ flatpak_context_shared_to_args (FlatpakContextShares shares, static FlatpakPolicy flatpak_policy_from_string (const char *string, GError **error) { - const char *policies[] = { "none", "see", "filtered", "talk", "own", NULL }; + const char *policies[] = { "none", "see", "talk", "own", NULL }; int i; g_autofree char *values = NULL;