diff options
Diffstat (limited to 'timers.go')
-rw-r--r-- | timers.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -108,7 +108,7 @@ func expiredZeroKeyMaterial(peer *Peer) { hs := &peer.handshake hs.mutex.Lock() - kp := &peer.keyPairs + kp := &peer.keypairs kp.mutex.Lock() if kp.previous != nil { @@ -125,7 +125,7 @@ func expiredZeroKeyMaterial(peer *Peer) { } kp.mutex.Unlock() - peer.device.indices.Delete(hs.localIndex) + peer.device.indexTable.Delete(hs.localIndex) hs.Clear() hs.mutex.Unlock() } |