diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-09-02 02:19:25 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-09-02 02:32:43 +0200 |
commit | b52c0c2e64988277a35a955a474d944967059aeb (patch) | |
tree | 525963ebb70bc1edccff58a7e8d4948e2afaaf18 /ssh-pkcs11.c | |
parent | upstream: print comment when printing pubkey from private (diff) | |
download | openssh-b52c0c2e64988277a35a955a474d944967059aeb.tar.xz openssh-b52c0c2e64988277a35a955a474d944967059aeb.zip |
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
Diffstat (limited to 'ssh-pkcs11.c')
-rw-r--r-- | ssh-pkcs11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-pkcs11.c b/ssh-pkcs11.c index 45ab80d0a..d1a101218 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; |