diff options
| author | Rafael H. Schloming <rhs@apache.org> | 2007-10-03 01:51:04 +0000 |
|---|---|---|
| committer | Rafael H. Schloming <rhs@apache.org> | 2007-10-03 01:51:04 +0000 |
| commit | 45c108c7c2f9dc2976a6293052b7511ac0fabba3 (patch) | |
| tree | ef60380a9e8a6b7b54824f98f1e62395fa1891c1 /qpid/cpp | |
| parent | 36e3179c6cd968f355eb949011e1605cc2c9b295 (diff) | |
| download | qpid-python-45c108c7c2f9dc2976a6293052b7511ac0fabba3.tar.gz | |
fixed decoding of b/e bits
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@581468 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rw-r--r-- | qpid/cpp/src/qpid/framing/AMQFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/framing/AMQFrame.cpp b/qpid/cpp/src/qpid/framing/AMQFrame.cpp index 736c3f08ef..9140f16f7a 100644 --- a/qpid/cpp/src/qpid/framing/AMQFrame.cpp +++ b/qpid/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) |
