From fa3e5609abf9c87862207239177e62f491476027 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 5 Feb 2005 12:50:47 +0000 Subject: Put "cf_status_t" back. svn path=/trunk/; revision=13303 --- gtk/file_dlg.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gtk/file_dlg.c') diff --git a/gtk/file_dlg.c b/gtk/file_dlg.c index 8f35fd916f..53b1295990 100644 --- a/gtk/file_dlg.c +++ b/gtk/file_dlg.c @@ -715,14 +715,14 @@ file_open_ok_cb(GtkWidget *w, gpointer fs) { switch (cf_read(&cfile)) { - 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: /* The user bailed out of re-reading the capture file; the capture file has been closed - just free the capture file name string and return (without changing the last containing @@ -1086,14 +1086,14 @@ file_merge_ok_cb(GtkWidget *w, gpointer fs) { switch (cf_read(&cfile)) { - 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: /* The user bailed out of re-reading the capture file; the capture file has been closed - just free the capture file name string and return (without changing the last containing -- cgit v1.2.3