diff options
-rw-r--r-- | driver.c | 4 | ||||
-rw-r--r-- | imap.c | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -76,8 +76,8 @@ struct method *proto; goto closeUp; } - /* accept greeting message from IMAP server */ - ok = imap_ok(buf,socket); + /* accept greeting message from server */ + ok = (protocol->parse_response)(buf, socket); if (ok != 0) { if (ok != PS_SOCKET) gen_transact(socket, protocol->exit_cmd); @@ -64,8 +64,10 @@ int socket; } while (tag[0] != '\0' && strncmp(buf, tag, strlen(tag))); - if (tag[0] == '\0') + if (tag[0] == '\0') { + strcpy(argbuf, buf); return(0); + } else { if (strncmp(buf + TAGLEN + 1, "OK", 2) == 0) { strcpy(argbuf, buf + TAGLEN); |