Undo r37833 in favor of Sake's changes to be committed at some future date.
authorcmaynard <cmaynard@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 30 Jun 2011 01:05:49 +0000 (01:05 +0000)
committercmaynard <cmaynard@f5534014-38df-0310-8fa8-9805f1628bb7>
Thu, 30 Jun 2011 01:05:49 +0000 (01:05 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37839 f5534014-38df-0310-8fa8-9805f1628bb7

docbook/release-notes.xml
gtk/capture_file_dlg.c
packet-range.c
win32/file_dlg_win32.c

index b5b1c3113dde630d7f8bcdaee063a9761226a8f0..cc89792ef0ab8f71d211898415f11e0b855929e7 100644 (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,
index b8f11c305f448caaf3d0b9d3cc0c1ca1b3fb894a..3832f1bebd21a7c0c02cfacdafc9c04a4c4ef2e1 100644 (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);
index d86f27ba5943e11dd3919add2ef1bae807c33ef8..ed9955e09447ec9b5da622fd7c370f202a018cde 100644 (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();
 
index 24b1c0c13a80a25aa4183f785d6f4c27e1306591..0e191b992f2a020eca054e31eaa0e7e71f53e2ac 100644 (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 */