aboutsummaryrefslogtreecommitdiffstats
path: root/packet-m2ua.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-11-13 23:38:33 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-11-13 23:38:33 +0000
commit276cb8f9fe0652a1e58eab8d1e88402d0a5419b7 (patch)
treed86a91be04aa4316faa0989321a0181bd7b1f810 /packet-m2ua.c
parent1b946c894020cec5b96a9545a06c0cbe6b505c4b (diff)
Require that field names contain only alphanumerics, "-", "_", and ".".
Fix the names that contained other characters. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8959 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-m2ua.c')
-rw-r--r--packet-m2ua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-m2ua.c b/packet-m2ua.c
index 629324caf7..85c54e1b4a 100644
--- a/packet-m2ua.c
+++ b/packet-m2ua.c
@@ -6,7 +6,7 @@
*
* Copyright 2002, Michael Tuexen <tuexen [AT] fh-muenster.de>
*
- * $Id: packet-m2ua.c,v 1.12 2003/09/04 14:32:01 tuexen Exp $
+ * $Id: packet-m2ua.c,v 1.13 2003/11/13 23:38:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1067,7 +1067,7 @@ proto_register_m2ua(void)
{ &hf_status_type, { "Status type", "m2ua.status_type", FT_UINT16, BASE_DEC, VALS(status_type_values), 0x0, "", HFILL } },
{ &hf_status_ident, { "Status info", "m2ua.status_info", FT_UINT16, BASE_DEC, NULL, 0x0, "", HFILL } },
{ &hf_asp_id, { "ASP identifier", "m2ua.asp_identifier", FT_UINT32, BASE_DEC, NULL, 0x0, "", HFILL } },
- { &hf_correlation_id, { "Correlation identifier", "m2ua.correlation identifier", FT_UINT32, BASE_DEC, NULL, 0x0, "", HFILL } },
+ { &hf_correlation_id, { "Correlation identifier", "m2ua.correlation_identifier", FT_UINT32, BASE_DEC, NULL, 0x0, "", HFILL } },
{ &hf_data_2_li, { "Length indicator", "m2ua.data_2_li", FT_UINT8, BASE_DEC, NULL, 0x0, "", HFILL } },
{ &hf_state, { "State", "m2ua.state", FT_UINT32, BASE_DEC, VALS(state_values), 0x0, "", HFILL } },
{ &hf_event, { "Event", "m2ua.event", FT_UINT32, BASE_DEC, VALS(event_values), 0x0, "", HFILL } },