aboutsummaryrefslogtreecommitdiffstats
path: root/agent
diff options
context:
space:
mode:
Diffstat (limited to 'agent')
-rw-r--r--agent/ChangeLog4
-rw-r--r--agent/cvt-openpgp.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/agent/ChangeLog b/agent/ChangeLog
index 5abcc67f2..01ff96172 100644
--- a/agent/ChangeLog
+++ b/agent/ChangeLog
@@ -1,3 +1,7 @@
+2010-10-06 Werner Koch <[email protected]>
+
+ * cvt-openpgp.c (convert_secret_key): Add missing break.
+
2010-10-05 Werner Koch <[email protected]>
* gpg-agent.c (main): Don't set SSH_AGENT_PID so that ssh-agent -k
diff --git a/agent/cvt-openpgp.c b/agent/cvt-openpgp.c
index 8105ae6f6..5a044c449 100644
--- a/agent/cvt-openpgp.c
+++ b/agent/cvt-openpgp.c
@@ -126,6 +126,7 @@ convert_secret_key (gcry_sexp_t *r_key, int pubkey_algo, gcry_mpi_t *skey)
"(private-key(rsa(n%m)(e%m)(d%m)(p%m)(q%m)(u%m)))",
skey[0], skey[1], skey[2], skey[3], skey[4],
skey[5]);
+ break;
default:
err = gpg_error (GPG_ERR_PUBKEY_ALGO);