From e4767466f1d59d83000232c3853a8f9a99145d17 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Sun, 31 Jul 2005 14:03:24 +0000 Subject: Fix compiler warning. svn path=/trunk/; revision=4207 --- transact.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'transact.c') diff --git a/transact.c b/transact.c index 46f12d3f..8dfa7b2d 100644 --- a/transact.c +++ b/transact.c @@ -989,7 +989,7 @@ int readheaders(int sock, else if (resent_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + resent_from_offs))); else if (from_offs >= 0 && (ap = nxtaddr(msgblk.headers + from_offs))); else if (reply_to_offs >= 0 && (ap = nxtaddr(msgblk.headers + reply_to_offs))); - else if (app_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + app_from_offs))); + else if (app_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + app_from_offs))) {} /* multi-line MAIL FROM addresses confuse SMTP terribly */ if (ap && !strchr(ap, '\n')) { strncpy(msgblk.return_path, ap, sizeof(msgblk.return_path)); -- cgit v1.2.3