diff options
author | NIIBE Yutaka <[email protected]> | 2020-05-26 03:50:22 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2020-05-26 03:50:22 +0000 |
commit | 324dbe3eb551bd85b62087d10236e6a45fc9178d (patch) | |
tree | a11e493dd067016c9652cd188de2af186efe9f13 | |
parent | agent: SSH clean up. (diff) | |
download | gnupg-324dbe3eb551bd85b62087d10236e6a45fc9178d.tar.gz gnupg-324dbe3eb551bd85b62087d10236e6a45fc9178d.zip |
ecc-sos: When reading private key, it's unsigned.
* agent/findkey.c (agent_public_key_from_file): Use 'M' format.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | agent/findkey.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/findkey.c b/agent/findkey.c index 7fb938b35..11746f571 100644 --- a/agent/findkey.c +++ b/agent/findkey.c @@ -1439,7 +1439,7 @@ agent_public_key_from_file (ctrl_t ctrl, { *p++ = '('; *p++ = *s++; - p = stpcpy (p, " %m)"); + p = stpcpy (p, " %M)"); log_assert (argidx < DIM (args)); args[argidx++] = &array[idx]; } |