diff options
author | lloyd <[email protected]> | 2006-06-24 02:05:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-06-24 02:05:27 +0000 |
commit | 37a5509d230f4a84fbaa5a889cb40e19a2b0c0ad (patch) | |
tree | d9465b3cc28f82b2f865c32939a8dcf0f377ffc3 /src | |
parent | 0f5b4a6a3460e2ad24b055bdc2bc5fd33ed35b0f (diff) |
Small cleanup to Authority_Key_Identifier::decode_inner
Diffstat (limited to 'src')
-rw-r--r-- | src/x509_ext.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/x509_ext.cpp b/src/x509_ext.cpp index c6a7d5b43..609cb01ac 100644 --- a/src/x509_ext.cpp +++ b/src/x509_ext.cpp @@ -308,8 +308,9 @@ MemoryVector<byte> Authority_Key_ID::encode_inner() const *************************************************/ void Authority_Key_ID::decode_inner(const MemoryRegion<byte>& in) { - BER_Decoder(in).start_cons(SEQUENCE). - decode_optional_string(key_id, OCTET_STRING, 0); + BER_Decoder(in) + .start_cons(SEQUENCE) + .decode_optional_string(key_id, OCTET_STRING, 0); } /************************************************* |