diff options
author | Colin Watson <cjwatson@debian.org> | 2014-02-10 00:18:28 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2014-02-10 00:18:28 +0000 |
commit | 9a975a9faed7c4f334e8c8490db3e77e102f2b21 (patch) | |
tree | 764a885ec9a963f6a8b15de6e1765f16b9ac4738 /ssh-pkcs11-helper.c | |
parent | ee196dab7c5f97f0b80c8099343a375bead92010 (diff) | |
parent | cdb6c90811caa5df2df856be9b0b16db020fe31d (diff) |
Import openssh_6.5p1.orig.tar.gz
Diffstat (limited to 'ssh-pkcs11-helper.c')
-rw-r--r-- | ssh-pkcs11-helper.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ssh-pkcs11-helper.c b/ssh-pkcs11-helper.c index 39b2e7c56..b7c52beb8 100644 --- a/ssh-pkcs11-helper.c +++ b/ssh-pkcs11-helper.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-pkcs11-helper.c,v 1.6 2013/05/17 00:13:14 djm Exp $ */ | 1 | /* $OpenBSD: ssh-pkcs11-helper.c,v 1.7 2013/12/02 02:56:17 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2010 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2010 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -127,7 +127,8 @@ process_add(void) | |||
127 | buffer_put_char(&msg, SSH2_AGENT_IDENTITIES_ANSWER); | 127 | buffer_put_char(&msg, SSH2_AGENT_IDENTITIES_ANSWER); |
128 | buffer_put_int(&msg, nkeys); | 128 | buffer_put_int(&msg, nkeys); |
129 | for (i = 0; i < nkeys; i++) { | 129 | for (i = 0; i < nkeys; i++) { |
130 | key_to_blob(keys[i], &blob, &blen); | 130 | if (key_to_blob(keys[i], &blob, &blen) == 0) |
131 | continue; | ||
131 | buffer_put_string(&msg, blob, blen); | 132 | buffer_put_string(&msg, blob, blen); |
132 | buffer_put_cstring(&msg, name); | 133 | buffer_put_cstring(&msg, name); |
133 | free(blob); | 134 | free(blob); |