aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-09-16 22:14:33 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-09-16 22:14:33 +0000
commit4469693560b1caa14c76911044e0675efee0a880 (patch)
tree90dfcd1bd1c28c6e2da72511855913809d7e61e7 /epan
parent485d75946c8ceafb84a5502c07494c1b9ea278e3 (diff)
slightly shrink COL_INFO output
svn path=/trunk/; revision=15842
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-pn-rt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-pn-rt.c b/epan/dissectors/packet-pn-rt.c
index 646d785428..5ff7a1b4ee 100644
--- a/epan/dissectors/packet-pn-rt.c
+++ b/epan/dissectors/packet-pn-rt.c
@@ -262,7 +262,7 @@ dissect_pn_rt(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
u8TransferStatus = tvb_get_guint8(tvb, tvb_len - 1);
g_snprintf (szFieldSummary, sizeof(szFieldSummary),
- "%sFrameID: 0x%04x, DataLen: %4u, Cycle: %5u (%s,%s,%s,%s)",
+ "%sID:0x%04x, Len:%4u, Cycle:%5u (%s,%s,%s,%s)",
pszProtAddInfo, u16FrameID, tvb_len - 2 - 4, u16CycleCounter,
(u8DataStatus & 0x04) ? "Valid" : "Invalid",
(u8DataStatus & 0x01) ? "Primary" : "Backup",
@@ -279,7 +279,7 @@ dissect_pn_rt(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
/* acyclic transfer has no fields at the end */
g_snprintf (szFieldSummary, sizeof(szFieldSummary),
- "%sFrameID: 0x%04x, DataLen: %4u",
+ "%sID:0x%04x, Len:%4u",
pszProtAddInfo, u16FrameID, tvb_len - 2);
/* user data length is packet len - frame id field */