emit the error in case of pop3 login problem

This commit is contained in:
SJ 2014-09-10 16:12:35 +02:00
parent 48a86ed82b
commit 8c6af1710b

View File

@ -89,6 +89,8 @@ int connect_to_pop3_server(int sd, char *username, char *password, int port, str
if(strncmp(buf, "+OK", 3) == 0) return OK; if(strncmp(buf, "+OK", 3) == 0) return OK;
printf("error: %s", buf);
return ERR; return ERR;
} }