aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-03-16 17:25:28 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-03-16 17:25:28 +0000
commit1b15b5049c4ada283e9d53d5a94458d13311384c (patch)
tree6082d388833e4d6260aac76717f1160ad7b45cc9 /imap.c
parent6ab7f52b691d6fd18274d089f415ce30f1280258 (diff)
downloadfetchmail-1b15b5049c4ada283e9d53d5a94458d13311384c.tar.gz
fetchmail-1b15b5049c4ada283e9d53d5a94458d13311384c.tar.bz2
fetchmail-1b15b5049c4ada283e9d53d5a94458d13311384c.zip
Spaces in IMAP names.
svn path=/trunk/; revision=1703
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/imap.c b/imap.c
index 4292916b..b1f27e1c 100644
--- a/imap.c
+++ b/imap.c
@@ -689,7 +689,7 @@ int imap_getauth(int sock, struct query *ctl, char *greeting)
if (!newpass)
return(PS_AUTHFAIL); /* should report error better!!!! */
- ok = gen_transact(sock, "LOGIN %s \"%s\"", ctl->remotename, newpass);
+ ok = gen_transact(sock, "LOGIN \"%s\" \"%s\"", ctl->remotename,newpass);
free(newpass);