aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-02-05 12:50:47 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-02-05 12:50:47 +0000
commit3b752b1b855878882538e1f4824bffcf512ee09a (patch)
tree4c0708acb2b9e723f33135ba031b4809171c48d9 /capture.c
parent5ba8faf0c523b399e2297dc254957b51d9650826 (diff)
Put "cf_status_t" back.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13303 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture.c')
-rw-r--r--capture.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/capture.c b/capture.c
index 39377a09ed..94bdb362e9 100644
--- a/capture.c
+++ b/capture.c
@@ -246,14 +246,14 @@ normal_do_capture(capture_options *capture_opts, gboolean is_tempfile)
}
switch (cf_read(capture_opts->cf)) {
- case CF_OK:
- case CF_ERROR:
+ case CF_READ_OK:
+ case CF_READ_ERROR:
/* Just because we got an error, that doesn't mean we were unable
to read any of the file; we handle what we could get from the
file. */
break;
- case CF_ABORTED:
+ case CF_READ_ABORTED:
/* Exit by leaving the main loop, so that any quit functions
we registered get called. */
main_window_nested_quit();