aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/scepclient/scep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scepclient/scep.c b/src/scepclient/scep.c
index bed898b1d..6b68a4742 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);
}
/**