diff options
author | Linus Nordberg <linus@nordberg.se> | 2014-10-08 16:22:05 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2014-10-08 16:22:05 +0200 |
commit | 6ddb0363c5c9bb147f9a4fe0ba683bdba20b5389 (patch) | |
tree | c7d8680e61ef0e32a358d199ad98fe838594d085 /src | |
parent | e3fd2e3fc202ce18b90ac4ca96ac8264bed79569 (diff) | |
parent | 732aaa8f2c2d57e8a5ad989fee0ba7b8c3c82479 (diff) |
Merge remote-tracking branch 'refs/remotes/map/fsync4' into origin-master
Conflicts:
src/catlfish.erl
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)}]} | |