aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--imap.c2
-rw-r--r--pop3.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/imap.c b/imap.c
index d6415866..db2f8b59 100644
--- a/imap.c
+++ b/imap.c
@@ -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);
diff --git a/pop3.c b/pop3.c
index f5e727c1..cea9ab95 100644
--- a/pop3.c
+++ b/pop3.c
@@ -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);