diff options
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |