aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-per.c
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2008-03-19 09:14:47 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2008-03-19 09:14:47 +0000
commitdf1763c49b2d53763e0e9932cb88937c8a98c0ac (patch)
treec91104dadae40b5eadc9c94d51dbab8769b73a37 /epan/dissectors/packet-per.c
parent7b062987192cc381785ed0920a220e1c0b9537f6 (diff)
fix from Anders: offset->boffset
svn path=/trunk/; revision=24697
Diffstat (limited to 'epan/dissectors/packet-per.c')
-rw-r--r--epan/dissectors/packet-per.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-per.c b/epan/dissectors/packet-per.c
index 54676d4575..d2aab180cb 100644
--- a/epan/dissectors/packet-per.c
+++ b/epan/dissectors/packet-per.c
@@ -125,7 +125,7 @@ static tvbuff_t *new_octet_aligned_subset(tvbuff_t *tvb, guint32 offset, guint32
guint8 octet0, octet1, *buf;
guint32 actual_length;
- actual_length = tvb_length_remaining(tvb,offset);
+ actual_length = tvb_length_remaining(tvb,boffset);
if (length <= actual_length)
actual_length = length;