From 08090f90c792062899ed526c77ff4415cf1020f9 Mon Sep 17 00:00:00 2001 From: Sebastian Wick Date: Thu, 12 Oct 2023 16:29:22 +0200 Subject: [PATCH] flatpak-run-wayland: Change security-context sandbox engine name To align with work in D-Bus, the security-context's sandbox engine names are now supposed to follow the reverse-DNS style. This change should be fine because there has not been a release of flatpak with security-context support, yet. --- common/flatpak-run-wayland.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/flatpak-run-wayland.c b/common/flatpak-run-wayland.c index 2f320b46..0670ab68 100644 --- a/common/flatpak-run-wayland.c +++ b/common/flatpak-run-wayland.c @@ -137,7 +137,7 @@ flatpak_run_add_wayland_security_context_args (FlatpakBwrap *bwrap, security_context = wp_security_context_manager_v1_create_listener (security_context_manager, listen_fd, sync_fd); - wp_security_context_v1_set_sandbox_engine (security_context, "flatpak"); + wp_security_context_v1_set_sandbox_engine (security_context, "org.flatpak"); wp_security_context_v1_set_app_id (security_context, app_id); wp_security_context_v1_set_instance_id (security_context, instance_id); wp_security_context_v1_commit (security_context);