From 22e0dcd8f3474373b65ace00f205049e7cf4e84c Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 10 Jul 1997 15:52:13 +0000 Subject: Avoid using bool, so we don't have to condition on TRUE and lose if it's predefined. svn path=/trunk/; revision=1168 --- fetchmail.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'fetchmail.c') diff --git a/fetchmail.c b/fetchmail.c index 8b0bf462..3b8fa05f 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -54,15 +54,15 @@ static int query_host(struct query *); int outlevel; /* see the O_.* constants above */ /* daemon mode control */ -bool nodetach; /* if TRUE, don't detach daemon process */ -bool quitmode; /* if --quit was set */ -bool check_only; /* if --probe was set */ +flag nodetach; /* if TRUE, don't detach daemon process */ +flag quitmode; /* if --quit was set */ +flag check_only; /* if --probe was set */ char *cmd_logfile; /* if --logfile was set */ int cmd_daemon; /* if --daemon was set */ /* miscellaneous global controls */ char *idfile; /* UID list file */ -bool versioninfo; /* emit only version info */ +flag versioninfo; /* emit only version info */ char *user; /* the name of the invoking user */ char *fetchmailhost; /* the name of the host running fetchmail */ char *program_name; /* the name to prefix error messages with */ -- cgit v1.2.3