From f19788d37752c98448543dc7d52a9c0133925fa2 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 11 Jan 2003 06:17:22 +0000 Subject: [PATCH] Put the correct/incorrect flag after the CRC value, as is done for other checksums. svn path=/trunk/; revision=6903 --- packet-atm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packet-atm.c b/packet-atm.c index 5984012816..cf7be4a7d2 100644 --- a/packet-atm.c +++ b/packet-atm.c @@ -1,7 +1,7 @@ /* packet-atm.c * Routines for ATM packet disassembly * - * $Id: packet-atm.c,v 1.60 2003/01/11 06:03:49 guy Exp $ + * $Id: packet-atm.c,v 1.61 2003/01/11 06:17:22 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -1028,8 +1028,8 @@ dissect_reassembled_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, calc_crc = update_crc(0xFFFFFFFF, tvb_get_ptr(tvb, 0, length), length); proto_tree_add_text(atm_tree, tvb, length - 4, 4, - "AAL5 CRC (%s): 0x%08X", - (calc_crc == 0xC704DD7B) ? "correct" : "incorrect", crc); + "AAL5 CRC: 0x%08X (%s)", crc, + (calc_crc == 0xC704DD7B) ? "correct" : "incorrect"); } next_tvb = tvb_new_subset(tvb, 0, aal5_length, aal5_length); }