From 988d4585bcadc4e33d0e7277938607cb469a07df Mon Sep 17 00:00:00 2001 From: Kevin Albertson Date: Wed, 28 Dec 2022 20:07:59 -0500 Subject: [PATCH] ipsec: fix comment --- epan/dissectors/packet-ipsec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-ipsec.c b/epan/dissectors/packet-ipsec.c index 7a8667b142..c3d4f70f4b 100644 --- a/epan/dissectors/packet-ipsec.c +++ b/epan/dissectors/packet-ipsec.c @@ -2372,7 +2372,7 @@ dissect_ipcomp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* dissec /* * try to uncompress as if it were DEFLATEd. With negotiated * CPIs, we don't know the algorithm beforehand; if we get it - * wrong, tvb_uncompress() returns NULL and nothing is displayed. + * wrong, tvb_child_uncompress() returns NULL and nothing is displayed. */ decomp = tvb_child_uncompress(data, data, 0, tvb_captured_length(data)); if (decomp) {