diff options
author | Ulf Lamping <ulf.lamping@web.de> | 2005-02-04 01:29:29 +0000 |
---|---|---|
committer | Ulf Lamping <ulf.lamping@web.de> | 2005-02-04 01:29:29 +0000 |
commit | dd71ad695f08b20a36787b871834cbc21f26904a (patch) | |
tree | a6af68fed74eef2c0549138e7309494650469d34 /gtk/capture_info_dlg.c | |
parent | 02f8788b4ebb369ef7aabf9e75af37c614cf69a3 (diff) | |
download | wireshark-dd71ad695f08b20a36787b871834cbc21f26904a.tar.gz wireshark-dd71ad695f08b20a36787b871834cbc21f26904a.tar.bz2 wireshark-dd71ad695f08b20a36787b871834cbc21f26904a.zip |
(some) redesign of capture data structures.
don't use global cfile at all but only an untpyed handle to call the cf_... functions in file.c
move the save_file member from capture_file to capture_opts, as it's only used while capturing and while preparing it
svn path=/trunk/; revision=13276
Diffstat (limited to 'gtk/capture_info_dlg.c')
-rw-r--r-- | gtk/capture_info_dlg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/capture_info_dlg.c b/gtk/capture_info_dlg.c index 2a2e600d29..b9d98901c7 100644 --- a/gtk/capture_info_dlg.c +++ b/gtk/capture_info_dlg.c @@ -75,7 +75,7 @@ pct(gint num, gint denom) { static void capture_info_delete_cb(GtkWidget *w _U_, GdkEvent *event _U_, gpointer data _U_) { - capture_stop(capture_opts->sync_mode); + capture_stop(capture_opts); } |