aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-iwarp-mpa.c
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-10-08 15:10:43 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-10-08 15:10:43 +0000
commitad7042d2a43710ac62e4f6dfe472caa16af1e0fe (patch)
tree48a425f1fb68ce4db213c45630953aa7e6a863e1 /epan/dissectors/packet-iwarp-mpa.c
parent30cb2b94486295e44d7c84148af0c6490573ecc1 (diff)
calculate_crc32c -> crc32c_calculate for proper 'namespacing'
svn path=/trunk/; revision=30405
Diffstat (limited to 'epan/dissectors/packet-iwarp-mpa.c')
-rw-r--r--epan/dissectors/packet-iwarp-mpa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-iwarp-mpa.c b/epan/dissectors/packet-iwarp-mpa.c
index 02d9e274b4..e3d6d09775 100644
--- a/epan/dissectors/packet-iwarp-mpa.c
+++ b/epan/dissectors/packet-iwarp-mpa.c
@@ -621,7 +621,7 @@ dissect_fpdu_crc(tvbuff_t *tvb, proto_tree *tree, mpa_state_t *state,
if (state->crc) {
- crc = ~calculate_crc32c(tvb_get_ptr(tvb, 0, length), length,
+ crc = ~crc32c_calculate(tvb_get_ptr(tvb, 0, length), length,
CRC32C_PRELOAD);
sent_crc = tvb_get_ntohl(tvb, offset); /* crc start offset */