diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-07-07 09:01:38 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-07-07 09:01:38 +0100 |
commit | f1cd5613f68beee08ab479edf2a5ae50c91a63fe (patch) | |
tree | 2c44982a8d65610aa564086ad78a6a16b8bc3d8f /include | |
parent | 667e415c74570cd1feb19ebfe259ab196f09bdc9 (diff) |
Remove the last resort one time key
Diffstat (limited to 'include')
-rw-r--r-- | include/olm/account.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/olm/account.hh b/include/olm/account.hh index 2d1c17c..d3bde0d 100644 --- a/include/olm/account.hh +++ b/include/olm/account.hh @@ -32,9 +32,9 @@ struct LocalKey { static std::size_t const MAX_ONE_TIME_KEYS = 100; + struct Account { LocalKey identity_key; - LocalKey last_resort_one_time_key; List<LocalKey, MAX_ONE_TIME_KEYS> one_time_keys; ErrorCode last_error; |