aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mgcp.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2012-10-26 01:59:17 +0000
committerEvan Huus <eapache@gmail.com>2012-10-26 01:59:17 +0000
commit361aedec1f819365bd89143185892e2c7fa38efd (patch)
treea6ac4a3aa66e73b5673b988dc6a4e8ee7fd97979 /epan/dissectors/packet-mgcp.c
parentc6b522bc703bd91b5c473491a68e92b5319e819c (diff)
Create SET_ADDRESS_HF that takes an additional hf_ value that can be
used to override the filter generated from the address column. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7728 (again). svn path=/trunk/; revision=45792
Diffstat (limited to 'epan/dissectors/packet-mgcp.c')
-rw-r--r--epan/dissectors/packet-mgcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mgcp.c b/epan/dissectors/packet-mgcp.c
index 58212bc79e..a629c94ead 100644
--- a/epan/dissectors/packet-mgcp.c
+++ b/epan/dissectors/packet-mgcp.c
@@ -1396,7 +1396,7 @@ static void dissect_mgcp_firstline(tvbuff_t *tvb, packet_info *pinfo, proto_tree
const gchar *verb_description = "";
char code_with_verb[64] = ""; /* To fit "<4-letter-code> (<longest-verb>)" */
- static address null_address = { AT_NONE, 0, NULL };
+ static address null_address = { AT_NONE, -1, 0, NULL };
tvb_previous_offset = 0;
tvb_len = tvb_length(tvb);
tvb_current_len = tvb_len;