aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--prefs.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 32b929fce2..8fb7e1c2c4 100644
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,9 @@ Bugs Fixed
New Features
+ In order to improve the out-of-box responsiveness of Ethereal and
+ Tethereal, network name resolution has been disabled by default.
+
TCP analysis (a feature added in the 0.9.6 release) was improved.
The NCP code base received quite a few updates.
diff --git a/prefs.c b/prefs.c
index e7d1e747a3..0d31bfd077 100644
--- a/prefs.c
+++ b/prefs.c
@@ -1,7 +1,7 @@
/* prefs.c
* Routines for handling preferences
*
- * $Id: prefs.c,v 1.90 2002/09/14 10:07:37 oabad Exp $
+ * $Id: prefs.c,v 1.91 2002/09/28 15:23:13 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -837,7 +837,7 @@ read_prefs(int *gpf_errno_return, char **gpf_path_return,
prefs.capture_prom_mode = TRUE;
prefs.capture_real_time = FALSE;
prefs.capture_auto_scroll = FALSE;
- prefs.name_resolve = RESOLV_ALL;
+ prefs.name_resolve = RESOLV_ALL ^ RESOLV_NETWORK;
}
/* Construct the pathname of the global preferences file. */