diff options
author | NIIBE Yutaka <[email protected]> | 2020-05-26 05:20:38 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2020-05-26 05:20:38 +0000 |
commit | 85acf0699e4d5cc116bab88c4f03b1564f80f644 (patch) | |
tree | c6d428455aecb470eb86eeedc28c4b0fa6e3659a | |
parent | ecc-sos: Use unsigned integer format for SSH. (diff) | |
download | gnupg-85acf0699e4d5cc116bab88c4f03b1564f80f644.tar.gz gnupg-85acf0699e4d5cc116bab88c4f03b1564f80f644.zip |
ecc-sos: Unsigned integer for SSH, more.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | agent/command-ssh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/command-ssh.c b/agent/command-ssh.c index 4c6671f7a..9c58bec73 100644 --- a/agent/command-ssh.c +++ b/agent/command-ssh.c @@ -1807,7 +1807,7 @@ sexp_key_construct (gcry_sexp_t *r_sexp, for (i = 0; i < elems_n; i++) { - es_fprintf (format, "(%c%%m)", elems[i]); + es_fprintf (format, "(%c%%M)", elems[i]); if (secret) { for (j = 0; j < elems_n; j++) |