mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-11 21:48:50 +01:00
g10: When asking about a TOFU binding conflict, default to unknown.
* g10/tofu.c (ask_about_binding): Default to unknown. -- Signed-off-by: Neal H. Walfield <neal@g10code.com>
This commit is contained in:
parent
f2e5cb6ffb
commit
3d44e5e8a8
10
g10/tofu.c
10
g10/tofu.c
@ -1591,9 +1591,17 @@ ask_about_binding (ctrl_t ctrl,
|
||||
cpr_kill_prompt ();
|
||||
if (*response == CONTROL_L)
|
||||
tty_printf ("%s", prompt);
|
||||
else if (strlen (response) == 1)
|
||||
else if (!response[0])
|
||||
/* Default to unknown. Don't save it. */
|
||||
{
|
||||
tty_printf (_("Defaulting to unknown."));
|
||||
*policy = TOFU_POLICY_UNKNOWN;
|
||||
break;
|
||||
}
|
||||
else if (!response[1])
|
||||
{
|
||||
char *choice = strchr (choices, *response);
|
||||
|
||||
if (choice)
|
||||
{
|
||||
int c = ((size_t) choice - (size_t) choices) / 2;
|
||||
|
Loading…
Reference in New Issue
Block a user