From b5e4dc5abc12941cb0695e4d69d5ac2a2f21406f Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 29 Sep 1999 23:20:24 +0000 Subject: -Wall changes. svn path=/trunk/; revision=2626 --- imap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'imap.c') 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")) { -- cgit v1.2.3