From aae1de7f9e5ea7cf9684aa827afad910fead1311 Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Fri, 11 Oct 2013 21:29:12 +0000 Subject: 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 --- capture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'capture.c') 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: -- cgit v1.2.3