[openssh-commits] [openssh] 02/02: upstream: downgrade PKCS#11 "provider returned no slots" warning
git+noreply at mindrot.org
git+noreply at mindrot.org
Mon Sep 2 10:32:50 AEST 2019
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit b52c0c2e64988277a35a955a474d944967059aeb
Author: djm at openbsd.org <djm at openbsd.org>
Date: Mon Sep 2 00:19:25 2019 +0000
upstream: downgrade PKCS#11 "provider returned no slots" warning
from log level error to debug. This is common when attempting to enumerate
keys on smartcard readers with no cards plugged in. bz#3058 ok dtucker@
OpenBSD-Commit-ID: bb8839ddeb77c271390488af1b771041d43e49c6
---
ssh-pkcs11.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ssh-pkcs11.c b/ssh-pkcs11.c
index 45ab80d0..d1a10121 100644
--- a/ssh-pkcs11.c
+++ b/ssh-pkcs11.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-pkcs11.c,v 1.43 2019/03/08 17:24:43 markus Exp $ */
+/* $OpenBSD: ssh-pkcs11.c,v 1.44 2019/09/02 00:19:25 djm Exp $ */
/*
* Copyright (c) 2010 Markus Friedl. All rights reserved.
* Copyright (c) 2014 Pedro Martelletto. All rights reserved.
@@ -1523,7 +1523,7 @@ pkcs11_register_provider(char *provider_id, char *pin, struct sshkey ***keyp,
goto fail;
}
if (p->nslots == 0) {
- error("%s: provider %s returned no slots", __func__,
+ debug("%s: provider %s returned no slots", __func__,
provider_id);
ret = -SSH_PKCS11_ERR_NO_SLOTS;
goto fail;
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list