summaryrefslogtreecommitdiff
path: root/ui/win32
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-05-24 02:30:43 +0000
committerGuy Harris <guy@alum.mit.edu>2012-05-24 02:30:43 +0000
commit73888ed977e7ba3356d3c5e31c182508d576dfc1 (patch)
tree1431ddd9208fe5f10cf092f2414be0ef63d4efd7 /ui/win32
parentb655197a9dbfc5ea973ffa37b9642de0c1baeec1 (diff)
downloadwireshark-73888ed977e7ba3356d3c5e31c182508d576dfc1.tar.gz
We have to tell cf_save_packets() whether to save them in compressed
form; say "don't" for now. svn path=/trunk/; revision=42817
Diffstat (limited to 'ui/win32')
-rw-r--r--ui/win32/file_dlg_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/win32/file_dlg_win32.c b/ui/win32/file_dlg_win32.c
index eaf88f904a..da0a7ec804 100644
--- a/ui/win32/file_dlg_win32.c
+++ b/ui/win32/file_dlg_win32.c
@@ -377,7 +377,7 @@ win32_save_as_file(HWND h_wnd, action_after_save_e action_after_save, gpointer a
* This should be fixed even though the cf_save_packets()
* presumably should rarely fail in this case.
*/
- if (cf_save_packets(&cfile, file_name8->str, filetype) != CF_OK) {
+ if (cf_save_packets(&cfile, file_name8->str, filetype, FALSE) != CF_OK) {
/* The write failed. Try again. */
g_array_free(savable_file_types, TRUE);
g_string_free(file_name8, TRUE /* free_segment */);