From: Tobias Brunner Date: Wed, 30 May 2012 13:04:31 +0000 (+0200) Subject: scepclient: Generate uppercase transaction ID. X-Git-Tag: 5.0.0~153 X-Git-Url: https://git.strongswan.org/?p=strongswan.git;a=commitdiff_plain;h=3a7c6b39b530a5671b8bac8e9f117b3d38224a3f scepclient: Generate uppercase transaction ID. --- diff --git a/src/scepclient/scep.c b/src/scepclient/scep.c index bed898b..6b68a47 100644 --- a/src/scepclient/scep.c +++ b/src/scepclient/scep.c @@ -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); } /**