diff --git a/src/pop3.c b/src/pop3.c index 10462b59..8c89f87b 100644 --- a/src/pop3.c +++ b/src/pop3.c @@ -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; + printf("error: %s", buf); + return ERR; }