From 3a7c6b39b530a5671b8bac8e9f117b3d38224a3f Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 30 May 2012 15:04:31 +0200 Subject: [PATCH] scepclient: Generate uppercase transaction ID. --- src/scepclient/scep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /** -- 2.7.4