scepclient: Generate uppercase transaction ID.

This commit is contained in:
Tobias Brunner 2012-05-30 15:04:31 +02:00
parent f79b665243
commit 3a7c6b39b5

View File

@ -177,7 +177,7 @@ void scep_generate_transaction_id(public_key_t *key, chunk_t *transID,
memcpy(pos, digest.ptr, digest.len);
/* the transaction id is the serial number in hex format */
*transID = chunk_to_hex(digest, NULL, FALSE);
*transID = chunk_to_hex(digest, NULL, TRUE);
}
/**