diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-01-04 16:07:25 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-01-04 16:07:25 +0000 |
commit | 9732a3bd9c2771c4972c7c2376bb0840162d184a (patch) | |
tree | 4bc1097bdbd988ffee90dc99c98dd75046bec45b | |
parent | a2eea3bf22d24fec7406e7a09d47d9f1f3441c05 (diff) | |
download | fetchmail-9732a3bd9c2771c4972c7c2376bb0840162d184a.tar.gz fetchmail-9732a3bd9c2771c4972c7c2376bb0840162d184a.tar.bz2 fetchmail-9732a3bd9c2771c4972c7c2376bb0840162d184a.zip |
Quiet compiler warning.
svn path=/branches/BRANCH_6-3/; revision=4599
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 3c331e5a..24c38141 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1226,7 +1226,7 @@ static int load_params(int argc, char **argv, int optind) { char *cp; - if (!(cp = strrchr(idp->id, '/')) || + if (!(cp = strrchr((char *)idp->id, '/')) || ++cp, (0 == strcmp(cp, SMTP_PORT)) || servport(cp) == SMTP_PORT_NUM) { |