aboutsummaryrefslogtreecommitdiffstats
path: root/packet-atm.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-01-11 06:17:22 +0000
committerGuy Harris <guy@alum.mit.edu>2003-01-11 06:17:22 +0000
commitf19788d37752c98448543dc7d52a9c0133925fa2 (patch)
tree4dc8b82e4ef2f6031b02aa239bc072e806b6c70d /packet-atm.c
parent66782261d8f0695eb3dc73ebecb6356e1f793122 (diff)
Put the correct/incorrect flag after the CRC value, as is done for other
checksums. svn path=/trunk/; revision=6903
Diffstat (limited to 'packet-atm.c')
-rw-r--r--packet-atm.c6
1 files 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 <gerald@ethereal.com>
@@ -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);
}