aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-06-13 16:16:20 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-06-13 16:16:20 +0000
commit2eea2b748711008687bd0c44d498149bc9c7f3cb (patch)
treeda3a2de81c66640c97d74d4ab04873c8947f5006 /imap.c
parentd0be4d2919aa2821f6d72ca38430ca51beb29372 (diff)
downloadfetchmail-2eea2b748711008687bd0c44d498149bc9c7f3cb.tar.gz
fetchmail-2eea2b748711008687bd0c44d498149bc9c7f3cb.tar.bz2
fetchmail-2eea2b748711008687bd0c44d498149bc9c7f3cb.zip
More bool conversions.
svn path=/trunk/; revision=1094
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/imap.c b/imap.c
index 4c7b733c..970404b3 100644
--- a/imap.c
+++ b/imap.c
@@ -621,8 +621,8 @@ const static struct method imap =
{
"IMAP", /* Internet Message Access Protocol */
143, /* standard IMAP2bis/IMAP4 port */
- 1, /* this is a tagged protocol */
- 0, /* no message delimiter */
+ TRUE, /* this is a tagged protocol */
+ FALSE, /* no message delimiter */
imap_ok, /* parse command response */
imap_getauth, /* get authorization */
imap_getrange, /* query range of messages */