diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-03-22 09:04:14 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-03-22 09:04:14 +0000 |
commit | 8b11650d62a12a840528b195e25366acf9aa354d (patch) | |
tree | 1069692f1283a5ae291892a330e1a6dd2dd77b3e /pop2.c | |
parent | 655e43b525bb329203d04e60bc01e7655fb284e5 (diff) | |
download | fetchmail-8b11650d62a12a840528b195e25366acf9aa354d.tar.gz fetchmail-8b11650d62a12a840528b195e25366acf9aa354d.tar.bz2 fetchmail-8b11650d62a12a840528b195e25366acf9aa354d.zip |
Bug fixes.
svn path=/trunk/; revision=3268
Diffstat (limited to 'pop2.c')
-rw-r--r-- | pop2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ static int pop2_getauth(int sock, struct query *ctl, char *buf) { int status; - strcpy(shroud, ctl->password) + strcpy(shroud, ctl->password); status = gen_transact(sock, "HELO %s %s", ctl->remotename, ctl->password); |