Fix for bug 4888:

Restore setting DSCP column value, when relevant.

svn path=/trunk/; revision=33270
This commit is contained in:
Jaap Keuter 2010-06-20 18:24:25 +00:00
parent a47dfc3efa
commit 8bba8bf460
1 changed files with 3 additions and 0 deletions

View File

@ -1390,6 +1390,9 @@ dissect_ip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
}
iph->ip_tos = tvb_get_guint8(tvb, offset + 1);
if (g_ip_dscp_actif) {
col_add_fstr(pinfo->cinfo, COL_DSCP_VALUE, "%u", IPDSFIELD_DSCP(iph->ip_tos));
}
if (tree) {
if (g_ip_dscp_actif) {