aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-07-10 15:52:13 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-07-10 15:52:13 +0000
commit22e0dcd8f3474373b65ace00f205049e7cf4e84c (patch)
tree7d7acece65bf347936b0cc6b1d123e94e8796263 /fetchmail.c
parentae67f423832e11fc0276df528c17bf879f96171a (diff)
downloadfetchmail-22e0dcd8f3474373b65ace00f205049e7cf4e84c.tar.gz
fetchmail-22e0dcd8f3474373b65ace00f205049e7cf4e84c.tar.bz2
fetchmail-22e0dcd8f3474373b65ace00f205049e7cf4e84c.zip
Avoid using bool, so we don't have to condition on TRUE and lose if
it's predefined. svn path=/trunk/; revision=1168
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c8
1 files changed, 4 insertions, 4 deletions
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 */