From ec569bb64d95ca9a49fabc7d8b52ecdc75e8b601 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 5 Mar 2021 13:49:36 +0000 Subject: [PATCH] dir: Reserve the whole @@ prefix If we add new features analogous to file forwarding later, we might find that we need a different magic token. Let's reserve the whole @@* namespace so we can call it @@something-else. Signed-off-by: Simon McVittie (cherry picked from commit 1e7e8fdb24b51078f4c48e0711e24a14930ba1f0) --- common/flatpak-dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/flatpak-dir.c b/common/flatpak-dir.c index 8cf2fbb4..573a79ee 100644 --- a/common/flatpak-dir.c +++ b/common/flatpak-dir.c @@ -6103,7 +6103,7 @@ export_desktop_file (const char *app, g_string_append_printf (new_exec, " @@ %s @@", arg); else if (strcasecmp (arg, "%u") == 0) g_string_append_printf (new_exec, " @@u %s @@", arg); - else if (strcmp (arg, "@@") == 0 || strcmp (arg, "@@u") == 0) + else if (g_str_has_prefix (arg, "@@")) g_print (_("Skipping invalid Exec argument %s\n"), arg); else g_string_append_printf (new_exec, " %s", arg);