diff options
author | Sean Whitton <spwhitton@spwhitton.name> | 2021-02-15 16:19:17 -0700 |
---|---|---|
committer | Sean Whitton <spwhitton@spwhitton.name> | 2021-02-15 16:19:17 -0700 |
commit | e6d956e3b49e4dbb88437a00893a1f0c191475f2 (patch) | |
tree | e5aca610d0c3ff7d0a7f23e2fcfc3ac5dad18660 /debian/patches/start-gnome-keyring-daemon-with---compon.patch | |
parent | 68113f3cd914edcaca620ab0631c9676de324df5 (diff) | |
download | xfce4-session-e6d956e3b49e4dbb88437a00893a1f0c191475f2.tar.gz |
Commit Debian 3.0 (quilt) metadatadebian/4.16.0-1+athena1athena/bullseye
[dgit (9.12) quilt-fixup]
Diffstat (limited to 'debian/patches/start-gnome-keyring-daemon-with---compon.patch')
-rw-r--r-- | debian/patches/start-gnome-keyring-daemon-with---compon.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/debian/patches/start-gnome-keyring-daemon-with---compon.patch b/debian/patches/start-gnome-keyring-daemon-with---compon.patch new file mode 100644 index 0000000..d96d71f --- /dev/null +++ b/debian/patches/start-gnome-keyring-daemon-with---compon.patch @@ -0,0 +1,29 @@ +From: Sean Whitton <spwhitton@spwhitton.name> +Date: Mon, 15 Feb 2021 16:18:41 -0700 +X-Dgit-Generated: 4.16.0-1+athena1 68113f3cd914edcaca620ab0631c9676de324df5 +Subject: Start gnome-keyring-daemon with --components=pkcs11,secrets + + +--- + +--- xfce4-session-4.16.0.orig/xfce4-session/xfsm-compat-gnome.c ++++ xfce4-session-4.16.0/xfce4-session/xfsm-compat-gnome.c +@@ -107,7 +107,7 @@ gnome_keyring_daemon_startup (void) + gint status; + glong pid; + gchar *end; +- gchar *argv[3]; ++ gchar *argv[4]; + gchar *p; + gchar *name; + const gchar *value; +@@ -122,7 +122,8 @@ gnome_keyring_daemon_startup (void) + error = NULL; + argv[0] = GNOME_KEYRING_DAEMON; + argv[1] = "--start"; +- argv[2] = NULL; ++ argv[2] = "--components=pkcs11,secrets"; ++ argv[3] = NULL; + g_spawn_sync (NULL, argv, NULL, + G_SPAWN_SEARCH_PATH | G_SPAWN_LEAVE_DESCRIPTORS_OPEN, + child_setup, NULL, |