aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-13 03:19:51 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-13 03:19:51 +0000
commit5dc68d27d1e979147642d4682044751f029b817c (patch)
treece7f41d3acf7c80d85aeaffeded1f7bc705de09d /rcfile_y.y
parent17cb8e0ac70fc0693211d17bf74a4fc08f57ae8c (diff)
downloadfetchmail-5dc68d27d1e979147642d4682044751f029b817c.tar.gz
fetchmail-5dc68d27d1e979147642d4682044751f029b817c.tar.bz2
fetchmail-5dc68d27d1e979147642d4682044751f029b817c.zip
Fixes for UIDL and Kerberos problems.
svn path=/trunk/; revision=319
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index 90a9f474..b3650880 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -68,7 +68,7 @@ serv_option : PROTOCOL PROTO {prc_setproto($2);}
prc_setauth(A_KERBEROS);
prc_setport(KPOP_PORT);
}
- | PORT STRING {prc_setport($2);}
+ | PORT STRING {prc_setport(atoi($2));}
| SKIP {prc_setskip($1==FLAG_TRUE);}
| AUTHENTICATE PASSWORD {prc_setauth(A_PASSWORD);}
| AUTHENTICATE KERBEROS {prc_setauth(A_KERBEROS);}