From 8200043c9d8a47d69143e041e8e954339d06205d 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 5f9dd82028..e9900ec284 100644 --- a/src/pkcs11.c +++ b/src/pkcs11.c @@ -740,6 +740,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