aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2012-05-30 15:04:31 +0200
committerTobias Brunner <tobias@strongswan.org>2012-06-11 17:33:29 +0200
commit3a7c6b39b530a5671b8bac8e9f117b3d38224a3f (patch)
tree980566200e2f7e8232956ec48bf7fc1e477c7daf /src
parentf79b665243dd3bfd39009cb4c15439da547f4e30 (diff)
downloadstrongswan-3a7c6b39b530a5671b8bac8e9f117b3d38224a3f.tar.bz2
strongswan-3a7c6b39b530a5671b8bac8e9f117b3d38224a3f.tar.xz
scepclient: Generate uppercase transaction ID.
Diffstat (limited to 'src')
-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);
}
/**