aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-03-28 16:14:34 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-03-28 16:14:34 +0000
commitb64ebb05c29f5362ac8fa8fe182dfbe3c571eead (patch)
treefd47328869577ae2c2e1a7bf8f0ead5dad5b58be /capture.c
parent131ab36a3257aec679019b7877fcf5055f9e3bca (diff)
fix Solaris build (I've removed O_BINARY)
rename sync_mode to real_time_mode, as we using sync_mode all the time now, so the name is misleading svn path=/trunk/; revision=13956
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/capture.c b/capture.c
index 86b7cd1ba3..d1ccfb2dbd 100644
--- a/capture.c
+++ b/capture.c
@@ -203,8 +203,8 @@ capture_input_new_file(capture_options *capture_opts, gchar *new_file)
}
capture_opts->save_file = g_strdup(new_file);
- /* if we are in sync mode, open the new file */
- if(capture_opts->sync_mode) {
+ /* if we are in real-time mode, open the new file */
+ if(capture_opts->real_time_mode) {
/* The child process started a capture.
Attempt to open the capture file and set up to read it. */
switch(cf_start_tail(capture_opts->cf, capture_opts->save_file, is_tempfile, &err)) {
@@ -231,7 +231,7 @@ capture_input_new_packets(capture_options *capture_opts, int to_read)
int err;
- if(capture_opts->sync_mode) {
+ if(capture_opts->real_time_mode) {
/* Read from the capture file the number of records the child told us
it added.
XXX - do something if this fails? */
@@ -263,7 +263,7 @@ capture_input_closed(capture_options *capture_opts)
int err;
- if(capture_opts->sync_mode) {
+ if(capture_opts->real_time_mode) {
/* 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)) {