From a3628f153ae947cf17b032e2f704478f7ca432e7 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Sat, 2 Jun 2018 10:44:26 -0400 Subject: [PATCH] fix --- llarp/iwp_link.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/iwp_link.cpp b/llarp/iwp_link.cpp index 20d4a8573..0cf78f160 100644 --- a/llarp/iwp_link.cpp +++ b/llarp/iwp_link.cpp @@ -580,7 +580,7 @@ namespace iwp process(uint8_t *buf, size_t sz) { frame_header hdr(buf); - if(hdr.flags() | eSessionInvalidated) + if(hdr.flags() & eSessionInvalidated) { rxflags |= eSessionInvalidated; }