From 156931abb3dae13ef14d189111a16e4e7f428897 Mon Sep 17 00:00:00 2001 From: guy Date: Thu, 6 Dec 2001 22:52:18 +0000 Subject: [PATCH] WTAP_ENCAP_ values are #defined in decimal; display them in decimal. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4349 f5534014-38df-0310-8fa8-9805f1628bb7 --- packet-frame.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packet-frame.c b/packet-frame.c index a5576db588..1e6b1d1514 100644 --- a/packet-frame.c +++ b/packet-frame.c @@ -2,7 +2,7 @@ * * Top-most dissector. Decides dissector based on Wiretap Encapsulation Type. * - * $Id: packet-frame.c,v 1.11 2001/11/26 01:23:59 hagbard Exp $ + * $Id: packet-frame.c,v 1.12 2001/12/06 22:52:18 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -139,7 +139,7 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) if (check_col(pinfo->fd, COL_PROTOCOL)) col_set_str(pinfo->fd, COL_PROTOCOL, "UNKNOWN"); if (check_col(pinfo->fd, COL_INFO)) - col_add_fstr(pinfo->fd, COL_INFO, "WTAP_ENCAP = 0x%x", pinfo->fd->lnk_t); + col_add_fstr(pinfo->fd, COL_INFO, "WTAP_ENCAP = %u", pinfo->fd->lnk_t); call_dissector(data_handle,tvb, pinfo, tree); } } -- 2.34.1