mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
agent: Allow TERM="".
* agent/call-pinentry.c (start_pinentry): When TERM is none, don't send OPTION ttytype to pinentry. -- GnuPG-bug-id: 4137 Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
3a1bb00810
commit
0076bef202
@ -438,7 +438,7 @@ start_pinentry (ctrl_t ctrl)
|
|||||||
return unlock_pinentry (ctrl, rc);
|
return unlock_pinentry (ctrl, rc);
|
||||||
}
|
}
|
||||||
value = session_env_getenv (ctrl->session_env, "TERM");
|
value = session_env_getenv (ctrl->session_env, "TERM");
|
||||||
if (value)
|
if (value && *value)
|
||||||
{
|
{
|
||||||
char *optstr;
|
char *optstr;
|
||||||
if (asprintf (&optstr, "OPTION ttytype=%s", value) < 0 )
|
if (asprintf (&optstr, "OPTION ttytype=%s", value) < 0 )
|
||||||
|
Loading…
x
Reference in New Issue
Block a user