From: Aki Tuomi Date: Mon, 19 Oct 2015 13:26:27 +0000 (+0300) Subject: Serialize slot correctly X-Git-Tag: auth-3.4.7~4^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ff30376229616cec180957374bd21a07964b16b;p=pdns Serialize slot correctly --- diff --git a/pdns/pkcs11signers.cc b/pdns/pkcs11signers.cc index d85b0d08e..cde36a4d5 100644 --- a/pdns/pkcs11signers.cc +++ b/pdns/pkcs11signers.cc @@ -926,7 +926,7 @@ DNSCryptoKeyEngine::storvector_t PKCS11DNSCryptoKeyEngine::convertToISCVector() boost::assign::push_back(storvect) (make_pair("Algorithm", boost::lexical_cast(d_algorithm))) (make_pair("Engine", d_module)) - (make_pair("Slot", boost::lexical_cast(d_slot_id))) + (make_pair("Slot", d_slot_id)) (make_pair("PIN", d_pin)) (make_pair("Label", d_label)); return storvect;