From caabfa5d935ae2799e9830f70ac68ea69443ac8e Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 11 Feb 1997 09:20:13 +0000 Subject: Trivalent options. svn path=/trunk/; revision=864 --- options.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index 54644237..a723a7cd 100644 --- a/options.c +++ b/options.c @@ -219,23 +219,23 @@ struct query *ctl; /* option record to be initialized */ break; case 'a': case LA_ALL: - ctl->fetchall = TRUE; + ctl->fetchall = FLAG_TRUE; break; case 'K': case LA_KILL: - ctl->keep = FALSE; + ctl->keep = FLAG_FALSE; break; case 'k': case LA_KEEP: - ctl->keep = TRUE; + ctl->keep = FLAG_TRUE; break; case 'F': case LA_FLUSH: - ctl->flush = TRUE; + ctl->flush = FLAG_TRUE; break; case 'n': case LA_NOREWRITE: - ctl->no_rewrite = TRUE; + ctl->rewrite = FLAG_TRUE; break; case 'l': case LA_LIMIT: -- cgit v1.2.3