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
This commit is contained in:
Alexander Larsson
2018-06-08 14:30:45 +02:00
committed by Alexander Larsson
parent c86ad3125b
commit 7311eff800

View File

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