aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2004-06-19 01:51:38 +0000
committerMatthias Andree <matthias.andree@gmx.de>2004-06-19 01:51:38 +0000
commit8da5725d04fae61458a4944de12207256e8dbc2a (patch)
tree74e183d66ba39d46dd3bfd1ebab69552e077a027 /pop3.c
parent67d5e1e4ca79d86c8beedc8709efb27f83295443 (diff)
downloadfetchmail-8da5725d04fae61458a4944de12207256e8dbc2a.tar.gz
fetchmail-8da5725d04fae61458a4944de12207256e8dbc2a.tar.bz2
fetchmail-8da5725d04fae61458a4944de12207256e8dbc2a.zip
Fix various warnings.
svn path=/trunk/; revision=3904
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pop3.c b/pop3.c
index 1a74715a..230244d6 100644
--- a/pop3.c
+++ b/pop3.c
@@ -490,7 +490,7 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting)
#ifdef OPIE_ENABLE
/* see RFC1938: A One-Time Password System */
- if (challenge = strstr(lastok, "otp-")) {
+ if ((challenge = strstr(lastok, "otp-"))) {
char response[OPIE_RESPONSE_MAX+1];
int i;