minor fix: fix the sequence while finishing a live capture, so the statusbar information about the file size is correct

svn path=/trunk/; revision=16148
This commit is contained in:
Ulf Lamping 2005-10-07 03:24:14 +00:00
parent f1b498587b
commit 8fc87ba3ba
1 changed files with 10 additions and 4 deletions

View File

@ -346,12 +346,18 @@ capture_input_closed(capture_options *capture_opts)
}
if(capture_opts->real_time_mode) {
/* first of all, we are not doing a capture any more */
cf_read_status_t status;
/* Read what remains of the capture file. */
status = cf_finish_tail(capture_opts->cf, &err);
/* Tell the GUI, we are not doing a capture any more.
Must be done after the cf_finish_tail(), so file lengths are displayed
correct. */
cf_callback_invoke(cf_cb_live_capture_update_finished, capture_opts->cf);
/* Read what remains of the capture file, and finish the capture.
XXX - do something if this fails? */
switch (cf_finish_tail(capture_opts->cf, &err)) {
/* Finish the capture. */
switch (status) {
case CF_READ_OK:
if(cf_packet_count(capture_opts->cf) == 0 && !capture_opts->restart) {