From 2bfadc114f971ad565851c2862bc10c43824fe54 Mon Sep 17 00:00:00 2001 From: "Rafael H. Schloming" Date: Wed, 3 Oct 2007 01:51:04 +0000 Subject: fixed decoding of b/e bits git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@581468 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/framing/AMQFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid/framing/AMQFrame.cpp') diff --git a/cpp/src/qpid/framing/AMQFrame.cpp b/cpp/src/qpid/framing/AMQFrame.cpp index 736c3f08ef..9140f16f7a 100644 --- a/cpp/src/qpid/framing/AMQFrame.cpp +++ b/cpp/src/qpid/framing/AMQFrame.cpp @@ -107,7 +107,7 @@ bool AMQFrame::decode(Buffer& buffer) bof = flags & 0x08; eof = flags & 0x04; bos = flags & 0x02; - bos = flags & 0x01; + eos = flags & 0x01; uint8_t type = buffer.getOctet(); uint16_t frame_size = buffer.getShort(); if (frame_size < frameOverhead()-1) -- cgit v1.2.1