aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docbook/release-notes.xml7
-rw-r--r--gtk/capture_file_dlg.c2
-rw-r--r--packet-range.c2
-rw-r--r--win32/file_dlg_win32.c2
4 files changed, 3 insertions, 10 deletions
diff --git a/docbook/release-notes.xml b/docbook/release-notes.xml
index b5b1c3113d..cc89792ef0 100644
--- a/docbook/release-notes.xml
+++ b/docbook/release-notes.xml
@@ -91,13 +91,6 @@ Wireshark Info
<listitem>
<para>
- When saving or printing packets, the default choice is now to save
- or print only the displayed packets rather than all packets.
- </para>
- </listitem>
-
- <listitem>
- <para>
TCP fast retransmissions are now indicated as an expert info note,
rather than a warning, just as TCP retransmissions are.
</para>
diff --git a/gtk/capture_file_dlg.c b/gtk/capture_file_dlg.c
index b8f11c305f..3832f1bebd 100644
--- a/gtk/capture_file_dlg.c
+++ b/gtk/capture_file_dlg.c
@@ -1235,7 +1235,7 @@ file_save_as_cmd(action_after_save_e action_after_save, gpointer action_after_sa
return;
}
- /* Default to saving packets in the file's current format. */
+ /* Default to saving all packets, in the file's current format. */
/* init the packet range */
packet_range_init(&range);
diff --git a/packet-range.c b/packet-range.c
index d86f27ba59..ed9955e094 100644
--- a/packet-range.c
+++ b/packet-range.c
@@ -206,7 +206,7 @@ static void packet_range_calc_user(packet_range_t *range) {
void packet_range_init(packet_range_t *range) {
range->process = range_process_all;
- range->process_filtered = TRUE;
+ range->process_filtered = FALSE;
range->remove_ignored = FALSE;
range->user_range = range_empty();
diff --git a/win32/file_dlg_win32.c b/win32/file_dlg_win32.c
index 24b1c0c13a..0e191b992f 100644
--- a/win32/file_dlg_win32.c
+++ b/win32/file_dlg_win32.c
@@ -1548,7 +1548,7 @@ save_as_file_hook_proc(HWND sf_hwnd, UINT msg, WPARAM w_param, LPARAM l_param) {
case WM_INITDIALOG:
g_sf_hwnd = sf_hwnd;
- /* Default to saving packets in the file's current format. */
+ /* Default to saving all packets, in the file's current format. */
filetype = cfile.cd_t;
/* init the packet range */