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
This commit is contained in:
djm@openbsd.org 2019-09-02 00:19:25 +00:00 committed by Damien Miller
parent 0713322e18
commit b52c0c2e64
1 changed files with 2 additions and 2 deletions

View File

@ -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;