diff options
| author | Matthias Andree <matthias.andree@gmx.de> | 2010-10-09 11:04:35 +0200 |
|---|---|---|
| committer | Matthias Andree <matthias.andree@gmx.de> | 2010-10-09 11:06:15 +0200 |
| commit | 11657d8f09315fd7a7098b8893c2451a00c6c24c (patch) | |
| tree | 63f11dc8d3faf9ff3ebf9af1ec42d43bdc31102a | |
| parent | 3145e69b206c7a52d3f044bca32ac0bbbb0e7504 (diff) | |
| download | fetchmail-11657d8f09315fd7a7098b8893c2451a00c6c24c.tar.gz fetchmail-11657d8f09315fd7a7098b8893c2451a00c6c24c.tar.bz2 fetchmail-11657d8f09315fd7a7098b8893c2451a00c6c24c.zip | |
Fix dead assignments.
| -rw-r--r-- | imap.c | 2 | ||||
| -rw-r--r-- | pop3.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -322,7 +322,7 @@ static int do_imap_ntlm(int sock, struct query *ctl) if ((gen_recv(sock, msgbuf, sizeof msgbuf))) return result; - len = from64tobits (&challenge, msgbuf, sizeof(challenge)); + (void)from64tobits (&challenge, msgbuf, sizeof(challenge)); if (outlevel >= O_DEBUG) dumpSmbNtlmAuthChallenge(stdout, &challenge); @@ -114,7 +114,7 @@ static int do_pop3_ntlm(int sock, struct query *ctl, if ((gen_recv(sock, msgbuf, sizeof msgbuf))) return result; - len = from64tobits (&challenge, msgbuf, sizeof(msgbuf)); + (void)from64tobits (&challenge, msgbuf, sizeof(msgbuf)); if (outlevel >= O_DEBUG) dumpSmbNtlmAuthChallenge(stdout, &challenge); |
