Undo r37833 in favor of Sake's changes to be committed at some future date.

svn path=/trunk/; revision=37839
This commit is contained in:
Chris Maynard 2011-06-30 01:05:49 +00:00
parent 3cb77978f6
commit 0eb0b8f1f3
4 changed files with 3 additions and 10 deletions

View File

@ -89,13 +89,6 @@ Wireshark Info
</para>
</listitem>
<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,

View File

@ -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);

View File

@ -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();

View File

@ -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 */