diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-07-31 14:03:24 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-07-31 14:03:24 +0000 |
commit | e4767466f1d59d83000232c3853a8f9a99145d17 (patch) | |
tree | 54a73028005eebb21c16b2a710a127a4a20929ce /transact.c | |
parent | 38ef894b8f693965f6d3ec72e345f0308b456112 (diff) | |
download | fetchmail-e4767466f1d59d83000232c3853a8f9a99145d17.tar.gz fetchmail-e4767466f1d59d83000232c3853a8f9a99145d17.tar.bz2 fetchmail-e4767466f1d59d83000232c3853a8f9a99145d17.zip |
Fix compiler warning.
svn path=/trunk/; revision=4207
Diffstat (limited to 'transact.c')
-rw-r--r-- | transact.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |