diff options
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/framing/AMQFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
