summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pkcs11.c3
1 files changed, 3 insertions, 0 deletions
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__,