diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-13 16:16:20 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-13 16:16:20 +0000 |
commit | 2eea2b748711008687bd0c44d498149bc9c7f3cb (patch) | |
tree | da3a2de81c66640c97d74d4ab04873c8947f5006 /imap.c | |
parent | d0be4d2919aa2821f6d72ca38430ca51beb29372 (diff) | |
download | fetchmail-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |