diff options
author | Tobias Fella <[email protected]> | 2024-01-18 10:23:51 +0000 |
---|---|---|
committer | Tobias Fella <[email protected]> | 2024-01-22 08:07:36 +0000 |
commit | cb8eb366cb009b66af95c7b5a147db4c6a651e40 (patch) | |
tree | cf7b25680c90b821512b00ac4c4eb18b05550ccf | |
parent | gpg: For v5 key generation for X448 also in parm file mode. (diff) | |
download | gnupg-cb8eb366cb009b66af95c7b5a147db4c6a651e40.tar.gz gnupg-cb8eb366cb009b66af95c7b5a147db4c6a651e40.zip |
Pass PINENTRY_GEOM_HINT environment variable to pinentry
* common/session-env.c: Add PINENTRY_GEOM_HINT to variables.
--
GnuPG-Bug-ID: 6930
-rw-r--r-- | common/session-env.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/session-env.c b/common/session-env.c index f07d9d101..e774c1d9b 100644 --- a/common/session-env.c +++ b/common/session-env.c @@ -84,9 +84,10 @@ static struct modules (eg "xim"). */ { "INSIDE_EMACS" }, /* Set by Emacs before running a process. */ - { "PINENTRY_USER_DATA", "pinentry-user-data"} + { "PINENTRY_USER_DATA", "pinentry-user-data"}, /* Used for communication with non-standard Pinentries. */ + { "PINENTRY_GEOM_HINT" } /* Used to pass window information. */ }; |