From: Guy Harris Date: Fri, 5 Sep 2003 23:54:10 +0000 (-0000) Subject: Check COL_PROTOCOL, not COL_INFO, before updating COL_PROTOCOL. X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=b12a397966cd21d3c0ffb8e2c7a71af92acaf1a5;p=metze%2Fwireshark%2Fwip.git Check COL_PROTOCOL, not COL_INFO, before updating COL_PROTOCOL. svn path=/trunk/; revision=8396 --- diff --git a/packet-mtp3.c b/packet-mtp3.c index 0c5f93f01c..4db312c28f 100644 --- a/packet-mtp3.c +++ b/packet-mtp3.c @@ -9,7 +9,7 @@ * Copyright 2001, Michael Tuexen * Updated for ANSI and Chinese ITU support by Jeff Morriss * - * $Id: packet-mtp3.c,v 1.20 2003/09/05 23:43:04 guy Exp $ + * $Id: packet-mtp3.c,v 1.21 2003/09/05 23:54:10 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -333,7 +333,7 @@ dissect_mtp3(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) proto_tree *mtp3_tree = NULL; /* Make entries in Protocol column and Info column on summary display */ - if (check_col(pinfo->cinfo, COL_INFO)) + if (check_col(pinfo->cinfo, COL_PROTOCOL)) switch(mtp3_standard) { case ITU_STANDARD: col_set_str(pinfo->cinfo, COL_PROTOCOL, "MTP3 (Int. ITU)");