strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f79b665
)
scepclient: Generate uppercase transaction ID.
author
Tobias Brunner
<tobias@strongswan.org>
Wed, 30 May 2012 13:04:31 +0000
(15:04 +0200)
committer
Tobias Brunner
<tobias@strongswan.org>
Mon, 11 Jun 2012 15:33:29 +0000
(17:33 +0200)
src/scepclient/scep.c
patch
|
blob
|
history
diff --git
a/src/scepclient/scep.c
b/src/scepclient/scep.c
index
bed898b
..
6b68a47
100644
(file)
--- 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,
FALS
E);
+ *transID = chunk_to_hex(digest, NULL,
TRU
E);
}
/**