aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2013-10-11 21:29:12 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2013-10-11 21:29:12 +0000
commitaae1de7f9e5ea7cf9684aa827afad910fead1311 (patch)
tree63038f5d478b9dc376a086d55d091c56f6955e43 /capture.c
parent564ca2d5e9fc3366eec476c0d27839b20eef972a (diff)
cf_start_tail() is (now) just a wrapper around cf_open(). Get rid of it and just call cf_open().
svn path=/trunk/; revision=52553
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture.c b/capture.c
index 5868923fb4..76882f086a 100644
--- a/capture.c
+++ b/capture.c
@@ -361,7 +361,7 @@ capture_input_new_file(capture_session *cap_session, gchar *new_file)
/* if we are in real-time mode, open the new file now */
if(capture_opts->real_time_mode) {
/* Attempt to open the capture file and set up to read from it. */
- switch(cf_start_tail((capture_file *)cap_session->cf, capture_opts->save_file, is_tempfile, &err)) {
+ switch(cf_open((capture_file *)cap_session->cf, capture_opts->save_file, is_tempfile, &err)) {
case CF_OK:
break;
case CF_ERROR: