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-fc.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-fc.c')
-rw-r--r-- | packet-fc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packet-fc.c b/packet-fc.c index 052d4cbe70..0540273ffe 100644 --- a/packet-fc.c +++ b/packet-fc.c @@ -2,7 +2,7 @@ * Routines for Fibre Channel Decoding (FC Header, Link Ctl & Basic Link Svc) * Copyright 2001, Dinesh G Dutt <ddutt@cisco.com> * - * $Id: packet-fc.c,v 1.2 2002/12/10 02:49:31 guy Exp $ + * $Id: packet-fc.c,v 1.3 2003/01/28 23:56:38 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -836,12 +836,13 @@ proto_register_fc(void) /* Register preferences */ fc_module = prefs_register_protocol (proto_fc, NULL); prefs_register_bool_preference (fc_module, - "reassemble_fc", "Reassemble FC", + "reassemble", + "Reassemble multi-frame sequences", "If enabled, reassembly of multi-frame " "sequences is done", &fc_reassemble); prefs_register_uint_preference (fc_module, - "fc_max_frame_size", "Max FC Frame Size", + "max_frame_size", "Max FC Frame Size", "This is the size of non-last frames in a " "multi-frame sequence", 10, &fc_max_frame_size); |