diff options
author | Magnus Ahltorp <map@kth.se> | 2014-09-28 02:01:15 +0200 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2014-09-28 02:01:15 +0200 |
commit | c915ef319d63f73231202443419dcad3aa32b5f4 (patch) | |
tree | 75a8a36a711bb805b549e05fbe78f1ae184eb8b9 /src | |
parent | eca189ce80ec353035902dc0c361c748e042371a (diff) |
Use raw file storage
Diffstat (limited to 'src')
-rw-r--r-- | src/catlfish.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/catlfish.erl b/src/catlfish.erl index bd3c106..d105591 100644 --- a/src/catlfish.erl +++ b/src/catlfish.erl @@ -146,7 +146,7 @@ unpack_entry(Entry) -> x_entries([]) -> []; x_entries([H|T]) -> - [_Index, _Hash, Entry] = H, + {_Index, _Hash, Entry} = H, {Timestamp, LeafCertVector, CertChainVector} = unpack_entry(Entry), MTL = build_mtl(Timestamp, LeafCertVector), [{[{leaf_input, base64:encode(MTL)}, {extra_data, base64:encode(CertChainVector)}]} | |