aboutsummaryrefslogtreecommitdiffstats
path: root/capture.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-02-05 12:50:47 +0000
committerGuy Harris <guy@alum.mit.edu>2005-02-05 12:50:47 +0000
commitfa3e5609abf9c87862207239177e62f491476027 (patch)
tree4c0708acb2b9e723f33135ba031b4809171c48d9 /capture.c
parent3e07757e58905e8451b57b5a8b642f80f0049643 (diff)
Put "cf_status_t" back.
svn path=/trunk/; revision=13303
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();