From e236351c52e4e3477b5e323d05b3ad2d13af0c83 Mon Sep 17 00:00:00 2001 From: Last G Date: Thu, 13 Sep 2012 00:09:38 +0600 Subject: [PATCH] Fixed missing "|" in "||" operation --- src/stream-tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream-tcp.c b/src/stream-tcp.c index 2a9146560d..eaee4b5828 100644 --- a/src/stream-tcp.c +++ b/src/stream-tcp.c @@ -1318,7 +1318,7 @@ static int StreamTcpPacketStateSynRecv(ThreadVars *tv, Packet *p, " not resetting the connection !!"); } } else { - if ((ssn->client.os_policy == OS_POLICY_LINUX) | + if ((ssn->client.os_policy == OS_POLICY_LINUX) || (ssn->client.os_policy == OS_POLICY_OLD_LINUX) || (ssn->client.os_policy == OS_POLICY_SOLARIS)) {