aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crc6-tvb.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/crc6-tvb.c')
-rw-r--r--epan/crc6-tvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/crc6-tvb.c b/epan/crc6-tvb.c
index 5f3306cb68..1b044abe44 100644
--- a/epan/crc6-tvb.c
+++ b/epan/crc6-tvb.c
@@ -23,7 +23,7 @@ crc6_compute_tvb(tvbuff_t *tvb, int len)
tvb_ensure_bytes_exist(tvb, 0, len); /* len == -1 not allowed */
buf = tvb_get_ptr(tvb, 0, len);
- return crc6_compute(buf, len);
+ return crc6_0X6F(0, buf, len);
}
/*