aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-09-29 23:20:24 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-09-29 23:20:24 +0000
commitb5e4dc5abc12941cb0695e4d69d5ac2a2f21406f (patch)
treeb7c796c1468a17c2da2f1fb4284601145cd9a356 /imap.c
parent9e818012346fbee36ba481866b3d0005ac6816ea (diff)
downloadfetchmail-b5e4dc5abc12941cb0695e4d69d5ac2a2f21406f.tar.gz
fetchmail-b5e4dc5abc12941cb0695e4d69d5ac2a2f21406f.tar.bz2
fetchmail-b5e4dc5abc12941cb0695e4d69d5ac2a2f21406f.zip
-Wall changes.
svn path=/trunk/; revision=2626
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 2d3d470c..128d1e0f 100644
--- a/imap.c
+++ b/imap.c
@@ -765,7 +765,7 @@ static int do_cram_md5 (int sock, struct query *ctl)
* [RFC822] as described in [POP3].
*/
- if (result = gen_recv (sock, buf1, sizeof (buf1))) {
+ if ((result = gen_recv (sock, buf1, sizeof (buf1)))) {
return result;
}
@@ -827,7 +827,7 @@ static int do_cram_md5 (int sock, struct query *ctl)
strcat (buf1, "\r\n");
SockWrite (sock, buf1, strlen (buf1));
- if (result = gen_recv (sock, buf1, sizeof (buf1)))
+ if ((result = gen_recv (sock, buf1, sizeof (buf1))))
return result;
if (strstr (buf1, "OK")) {