diff options
-rw-r--r-- | ssh-pkcs11.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ssh-pkcs11.c b/ssh-pkcs11.c index e074175bb..4156d0886 100644 --- a/ssh-pkcs11.c +++ b/ssh-pkcs11.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-pkcs11.c,v 1.19 2015/05/27 05:15:02 djm Exp $ */ | 1 | /* $OpenBSD: ssh-pkcs11.c,v 1.20 2015/07/18 08:00:21 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2010 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2010 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -631,6 +631,11 @@ pkcs11_add_provider(char *provider_id, char *pin, struct sshkey ***keyp) | |||
631 | error("C_GetTokenInfo failed: %lu", rv); | 631 | error("C_GetTokenInfo failed: %lu", rv); |
632 | continue; | 632 | continue; |
633 | } | 633 | } |
634 | if ((token->flags & CKF_TOKEN_INITIALIZED) == 0) { | ||
635 | debug2("%s: ignoring uninitialised token in slot %lu", | ||
636 | __func__, (unsigned long)i); | ||
637 | continue; | ||
638 | } | ||
634 | rmspace(token->label, sizeof(token->label)); | 639 | rmspace(token->label, sizeof(token->label)); |
635 | rmspace(token->manufacturerID, sizeof(token->manufacturerID)); | 640 | rmspace(token->manufacturerID, sizeof(token->manufacturerID)); |
636 | rmspace(token->model, sizeof(token->model)); | 641 | rmspace(token->model, sizeof(token->model)); |