diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-05 05:33:29 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-05 05:33:29 +0200 |
commit | 09a9bc289990e3f377a331626b0102283d6f83f4 (patch) | |
tree | 109a871092f78672e405a02e034c585d1882b8e0 /send.go | |
parent | 34891d92cd36289294d38cd9f26f1fc2456ef26a (diff) |
Fix infinite loop in exit routine
Diffstat (limited to 'send.go')
-rw-r--r-- | send.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -281,9 +281,10 @@ func (device *Device) RoutineEncryption() { elem.Drop() } default: - break + goto out } } + out: logDebug.Println("Routine: encryption worker - stopped") }() |