From: Last G Date: Wed, 12 Sep 2012 18:09:38 +0000 (+0600) Subject: Fixed missing "|" in "||" operation X-Git-Tag: suricata-1.4rc1~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e236351c52e4e3477b5e323d05b3ad2d13af0c83;p=thirdparty%2Fsuricata.git Fixed missing "|" in "||" operation --- 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)) {