diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-01-28 23:56:40 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-01-28 23:56:40 +0000 |
commit | 231f28ce08975fae6923caa9a1e92434dfb58d4e (patch) | |
tree | b49a0d66cf5f5a051a390c130dce54926825d354 /packet-rsvp.c | |
parent | 081f25299f9c3e95fc13d1afea987ae956eac15f (diff) | |
download | wireshark-231f28ce08975fae6923caa9a1e92434dfb58d4e.tar.gz wireshark-231f28ce08975fae6923caa9a1e92434dfb58d4e.tar.bz2 wireshark-231f28ce08975fae6923caa9a1e92434dfb58d4e.zip |
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".
svn path=/trunk/; revision=7030
Diffstat (limited to 'packet-rsvp.c')
-rw-r--r-- | packet-rsvp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rsvp.c b/packet-rsvp.c index daf5af9b93..7b826caee4 100644 --- a/packet-rsvp.c +++ b/packet-rsvp.c @@ -3,7 +3,7 @@ * * (c) Copyright Ashok Narayanan <ashokn@cisco.com> * - * $Id: packet-rsvp.c,v 1.79 2003/01/24 02:14:48 guy Exp $ + * $Id: packet-rsvp.c,v 1.80 2003/01/28 23:56:40 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -4253,7 +4253,7 @@ register_rsvp_prefs (void) rsvp_module = prefs_register_protocol(proto_rsvp, NULL); prefs_register_bool_preference( - rsvp_module, "rsvp_process_bundle", + rsvp_module, "process_bundle", "Dissect sub-messages in BUNDLE message", "Specifies whether Ethereal should decode and display sub-messages within BUNDLE messages", &rsvp_bundle_dissect); |