aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--imap.c4
-rw-r--r--pop2.c4
-rw-r--r--pop3.c4
4 files changed, 7 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index 9568c3ef..39f2e973 100644
--- a/NEWS
+++ b/NEWS
@@ -28,7 +28,7 @@ fetchmail-4.0 ():
* Values of --limit, --fetchlimit, and --batchlimit in .fetchmailrc can now
be overridden from the command line by specifying an explicit option of 0.
* Architecture-independent RPM building.
-* Work with the MercuryP/NLM v1.31 POP3 daenon (thanks to Pavel Kankovsky)
+* Work with the MercuryP/NLM v1.31 POP3 daemon (thanks to Pavel Kankovsky).
There are 258 people on the fetchmail-friends list.
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 */
diff --git a/pop2.c b/pop2.c
index d9e9990e..0bcbb2a6 100644
--- a/pop2.c
+++ b/pop2.c
@@ -118,8 +118,8 @@ const static struct method pop2 =
{
"POP2", /* Post Office Protocol v2 */
109, /* standard POP2 port */
- 0, /* this is not a tagged protocol */
- 0, /* does not use message delimiter */
+ FALSE, /* this is not a tagged protocol */
+ FALSE, /* does not use message delimiter */
pop2_ok, /* parse command response */
pop2_getauth, /* get authorization */
pop2_getrange, /* query range of messages */
diff --git a/pop3.c b/pop3.c
index 76b66846..6579b495 100644
--- a/pop3.c
+++ b/pop3.c
@@ -280,8 +280,8 @@ const static struct method pop3 =
{
"POP3", /* Post Office Protocol v3 */
110, /* standard POP3 port */
- 0, /* this is not a tagged protocol */
- 1, /* this uses a message delimiter */
+ FALSE, /* this is not a tagged protocol */
+ TRUE, /* this uses a message delimiter */
pop3_ok, /* parse command response */
pop3_getauth, /* get authorization */
pop3_getrange, /* query range of messages */