aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-acap.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-11-26 21:16:40 +0000
committerBill Meier <wmeier@newsguy.com>2012-11-26 21:16:40 +0000
commit0520b62b44ff8cd61681eeb9c6bed81c042c5be5 (patch)
tree916abcdac2ede3597e7605e4f5cccf19fe32341f /epan/dissectors/packet-acap.c
parent1ffc96d15362d9e4d447a3ebd04dd8c511fc7060 (diff)
tvb_find_line_end() arg should be FALSE not ENC_BIG_ENDIAN.
svn path=/trunk/; revision=46209
Diffstat (limited to 'epan/dissectors/packet-acap.c')
-rw-r--r--epan/dissectors/packet-acap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-acap.c b/epan/dissectors/packet-acap.c
index 9ef6c8ccd2..53c5f57e25 100644
--- a/epan/dissectors/packet-acap.c
+++ b/epan/dissectors/packet-acap.c
@@ -63,7 +63,7 @@ dissect_acap(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
* not longer than what's in the buffer, so the "tvb_get_ptr()"
* call won't throw an exception.
*/
- linelen = tvb_find_line_end(tvb, offset, -1, &next_offset, ENC_BIG_ENDIAN);
+ linelen = tvb_find_line_end(tvb, offset, -1, &next_offset, FALSE);
line = tvb_get_ptr(tvb, offset, linelen);
if (pinfo->match_uint == pinfo->destport)