aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-04-10 21:03:31 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2005-04-10 21:03:31 +0000
commit105a180df11576df82c4177dac771e4d99f03f49 (patch)
tree61a9ad9880dc04338ae09056ba41b214c6b5c606 /capture.c
parent6eac41e3bb42e73f9dce31ee5bc4c235b2d76730 (diff)
bugfix: call to cf_cb_live_capture_..._started with correct parameter
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14045 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture.c b/capture.c
index 3893587ed0..271849be40 100644
--- a/capture.c
+++ b/capture.c
@@ -222,9 +222,9 @@ capture_input_new_file(capture_options *capture_opts, gchar *new_file)
break;
}
- cf_callback_invoke(cf_cb_live_capture_update_started, capture_opts->cf);
+ cf_callback_invoke(cf_cb_live_capture_update_started, capture_opts);
} else {
- cf_callback_invoke(cf_cb_live_capture_fixed_started, capture_opts->cf);
+ cf_callback_invoke(cf_cb_live_capture_fixed_started, capture_opts);
}