From 414081b3f7ac86d1f3c2d4b26fca11650d60914a Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Thu, 13 Oct 2016 16:48:52 +0200 Subject: p11tool: avoid asking the security officer PIN twice on initialization --- src/pkcs11.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pkcs11.c b/src/pkcs11.c index 77002b9ee8..7334118252 100644 --- a/src/pkcs11.c +++ b/src/pkcs11.c @@ -914,6 +914,9 @@ pkcs11_init(FILE * outfile, const char *url, const char *label, if (pin == NULL || pin[0] == '\n') exit(1); + /* do not ask the SO PIN twice */ + setenv("GNUTLS_SO_PIN", so_pin, 0); + ret = gnutls_pkcs11_token_set_pin(url, NULL, pin, GNUTLS_PIN_USER); if (ret < 0) { fprintf(stderr, "Error in %s:%d: %s\n", __func__, __LINE__, -- cgit v1.2.1