aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_file_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2007-07-25from Florent DROUIN:Luis Ontanon1-8/+17
I did load an k12 file (.rf5), and want to save the selected frames in a new file. I got the error "Wireshark can't save this capture in that format" I think this is due to this correction: http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=22214 I have got a patch to force the type of file to libpcap, only if no other format is available. It should solve both problems. svn path=/trunk/; revision=22403
2007-06-27Fix a bug where you couldn't save individual packets from a file type thatStephen Fisher1-1/+7
Wireshark doesn't support writing to. The default in the drop-down menu was libpcap, but since gtk_option_menu_set_history() doesn't send the activate signal we set up earlier, you would have to manually click on the drop-down and reselect libpcap for it to work. Now it works as expected. svn path=/trunk/; revision=22214
2007-05-29Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLibGuy Harris1-1/+1
routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. svn path=/trunk/; revision=21990
2007-05-16Fix bug #1600: Merge feature from File menu does'nt do what it shouldStephen Fisher1-4/+4
(append vs prepend) svn path=/trunk/; revision=21807
2007-04-03Fix warnings on Linux/gcc 4.1.1Stephen Fisher1-1/+1
svn path=/trunk/; revision=21330
2007-01-22Fix various compiler warningsStephen Fisher1-1/+1
svn path=/trunk/; revision=20522
2006-11-05change all file offsets from long to gint64 so we can - theoretically - ↵Ulf Lamping1-1/+1
handle files > 2GB correct. Please distclean Win32 builds! svn path=/trunk/; revision=19814
2006-10-03the whole ARGUMENT_CL mimic isn't required any longer - remove it. This ↵Ulf Lamping1-10/+1
should fix compile problems under Unix. svn path=/trunk/; revision=19416
2006-10-03Implement a real "Cancel" button for the coloring rules dialog - this was a ↵Ulf Lamping1-14/+16
hard one! It seems to be working without bugs and as designed now. As this was a huge internal change, new bugs are very probable - please report. The implementation isn't still perfect, a new dialog internal list could possibly be removed again. However, I want to check in at this condition, just in case I make things worse - again. svn path=/trunk/; revision=19413
2006-10-02missing mark -> select changesUlf Lamping1-25/+25
svn path=/trunk/; revision=19400
2006-08-23fix #927: Win32: delete an existing file, if the user want's to overwrite a ↵Ulf Lamping1-0/+4
file and confirmed this already svn path=/trunk/; revision=19008
2006-05-28Ethereal->WiresharkAnders Broman1-2/+2
svn path=/trunk/; revision=18232
2006-05-22Get rid of a bunch of "Ethereal"s and "ethereal"s in comments, GUIGuy Harris1-7/+7
strings, and function names. svn path=/trunk/; revision=18205
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-04-30We use stuff from dlg_utils.h.Guy Harris1-2/+0
svn path=/trunk/; revision=18038
2006-04-30Move the file selection dialog routines to file_dlg.c, and give it aGuy Harris1-0/+3
header file. #if 0 out some includes; if none of the builds have a problem with that, I'll remove them. svn path=/trunk/; revision=18036
2006-04-29Most of the stuff in file_dlg.c is specific to capture files, so renameGuy Harris1-0/+1898
it to capture_file_dlg.c, and rename its header file. We might want to move the generic file dialog stuff to a file_dlg.c file (it's currently in dlg_utils.c), and move the non-capture-file dialog stuff in capture_file_dlg.c to another file. svn path=/trunk/; revision=18034