aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ndmp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-18 21:16:39 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-18 21:16:39 +0000
commit8e18ef8bbc426f3cd52d039e6c009b3612b8c7e3 (patch)
tree831de3735f16b2cc970679a823446dc458faf882 /packet-ndmp.c
parent4d81335d28ed53ed847a56685df67c4e3ea7801f (diff)
Make the default for NDMP desegmentation TRUE, as is the case for most
other protocols running atop TCP (and which should be the case for *all* of them, if it isn't so already; there's already a flag to control desegmentation in TCP, and it should, by default, be possible to turn that on and get desegmentation of all protocols). svn path=/trunk/; revision=4568
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 bb15ff6cae..38da235db8 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.6 2002/01/15 10:01:19 guy Exp $
+ * $Id: packet-ndmp.c,v 1.7 2002/01/18 21:16:39 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -235,7 +235,7 @@ struct ndmp_header {
};
/* desegmentation of NDMP packets */
-static gboolean ndmp_desegment = FALSE;
+static gboolean ndmp_desegment = TRUE;