aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ndmp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-15 10:01:21 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-15 10:01:21 +0000
commit86d348aed18446bb1b598b82509c27679ace0559 (patch)
treec3abba1472451fe53306defcccebe2671a8d4798 /packet-ndmp.c
parentc8f8db531fbddaaddd1064f55ef4296e84d4c8f2 (diff)
Fix some preferences to eliminate the extra copy of the protocol name at
the beginning, and to use underscores rather than periods where the preference's name really isn't part of a hierarchical namespace. Use "%u" rather than "%d" to print unsigned quantities. svn path=/trunk/; revision=4543
Diffstat (limited to 'packet-ndmp.c')
-rw-r--r--packet-ndmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ndmp.c b/packet-ndmp.c
index 769c62f946..bb15ff6cae 100644
--- a/packet-ndmp.c
+++ b/packet-ndmp.c
@@ -12,7 +12,7 @@
* Routines for NDMP dissection
* 2001 Ronnie Sahlberg (see AUTHORS for email)
*
- * $Id: packet-ndmp.c,v 1.5 2002/01/05 20:08:47 guy Exp $
+ * $Id: packet-ndmp.c,v 1.6 2002/01/15 10:01:19 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -3059,7 +3059,7 @@ proto_register_ndmp(void)
/* desegmentation */
ndmp_module = prefs_register_protocol(proto_ndmp, NULL);
- prefs_register_bool_preference(ndmp_module, "ndmp.desegment", "Desegment all NDMP messages spanning multiple TCP segments", "Whether the dissector should desegment NDMP over TCP PDUs or not", &ndmp_desegment);
+ prefs_register_bool_preference(ndmp_module, "desegment", "Desegment all NDMP messages spanning multiple TCP segments", "Whether the dissector should desegment NDMP over TCP PDUs or not", &ndmp_desegment);
}