diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-09-27 11:49:23 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-09-27 11:49:23 +0000 |
commit | ca16b36d2abc4591f2647eea3b161f8d5c818672 (patch) | |
tree | 6eadc3170914c073d709aabb67e70cb93047efd9 /driver.c | |
parent | bfe229561cd3018aed4ab427fc6d4c3b9e52dac1 (diff) | |
download | fetchmail-ca16b36d2abc4591f2647eea3b161f8d5c818672.tar.gz fetchmail-ca16b36d2abc4591f2647eea3b161f8d5c818672.tar.bz2 fetchmail-ca16b36d2abc4591f2647eea3b161f8d5c818672.zip |
Fix a mismatch.
svn path=/trunk/; revision=2615
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1631,7 +1631,7 @@ const int maxfetch; /* maximum number of messages to fetch */ if (protocol->getauth) { if (protocol->password_canonify) - (protocol->password_canonify)(shroud, ctl->password); + (protocol->password_canonify)(shroud, ctl->password, PASSWORDLEN); else strcpy(shroud, ctl->password); |