aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nlm.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-28 23:56:40 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-01-28 23:56:40 +0000
commit7dea6d9ba8496808534f7b7a0580fa62ad325a79 (patch)
treeb49a0d66cf5f5a051a390c130dce54926825d354 /packet-nlm.c
parentaab4c7ae3b64586ae4d9c5e83cd90f8fbc3535f0 (diff)
Panic if a preference starts with the name of the module to which it
belongs, as that's redundant. Fix a bunch of cases where that was done, and map the old name to the new name. Instead of marking "mtp3.mtp3_standard" as obsolete, map it to "mtp3.standard". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7030 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-nlm.c')
-rw-r--r--packet-nlm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-nlm.c b/packet-nlm.c
index 7a28cd1482..8db0d6f19a 100644
--- a/packet-nlm.c
+++ b/packet-nlm.c
@@ -1,7 +1,7 @@
/* packet-nlm.c
* Routines for nlm dissection
*
- * $Id: packet-nlm.c,v 1.33 2002/12/03 02:07:07 guy Exp $
+ * $Id: packet-nlm.c,v 1.34 2003/01/28 23:56:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1220,7 +1220,7 @@ proto_register_nlm(void)
proto_register_subtree_array(ett, array_length(ett));
nlm_module = prefs_register_protocol(proto_nlm, NULL);
- prefs_register_bool_preference(nlm_module, "nlm_msg_res_matching",
+ prefs_register_bool_preference(nlm_module, "msg_res_matching",
"Match MSG/RES packets for async NLM",
"Whether the dissector will track and match MSG and RES calls for asynchronous NLM",
&nlm_match_msgres);