diff options
author | Werner Koch <[email protected]> | 2021-08-13 12:08:53 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2021-08-17 08:42:18 +0000 |
commit | 455ba49071dea7588c9de11785b3092e45e4560b (patch) | |
tree | ce7e0777eb311e3491141b3cf7c08be416755e8e | |
parent | agent: New option --check-sym-passphrase-pattern. (diff) | |
download | gnupg-455ba49071dea7588c9de11785b3092e45e4560b.tar.gz gnupg-455ba49071dea7588c9de11785b3092e45e4560b.zip |
agent: Make QT_QPA_PLATFORMTHEME=qt5ct work for the pient
* agent/call-pinentry.c (atfork_core): Pass DISPLAY.
-rw-r--r-- | agent/call-pinentry.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/agent/call-pinentry.c b/agent/call-pinentry.c index 769ca676e..60b0c1482 100644 --- a/agent/call-pinentry.c +++ b/agent/call-pinentry.c @@ -212,8 +212,15 @@ atfork_core (ctrl_t ctrl, int debug_mode) /* For all new envvars (!ASSNAME) and the two medium old ones * which do have an assuan name but are conveyed using * environment variables, update the environment of the forked - * process. */ + * process. We also pass DISPLAY despite that --display is also + * used when exec-ing the pinentry. The reason is that for + * example the qt5ct tool does not have any arguments and thus + * relies on the DISPLAY envvar. The use case here is a global + * envvar like "QT_QPA_PLATFORMTHEME=qt5ct" which for example is + * useful when using the Qt pinentry under GNOME or XFCE. + */ if (!assname + || (!opt.keep_display && !strcmp (name, "DISPLAY")) || !strcmp (name, "XAUTHORITY") || !strcmp (name, "PINENTRY_USER_DATA")) { |