1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-27 20:44:56 +00:00

Fix backwards mail stuff.

This commit is contained in:
Brenden Matthews 2009-05-09 19:20:05 -06:00
parent f49ab7ffcb
commit 9dc5411681

View File

@ -277,9 +277,9 @@ struct mail_s *parse_mail_args(char type, const char *arg)
if (sscanf(arg, "%128s %128s %128s", mail->host, mail->user, mail->pass)
!= 3) {
if (type == POP3_TYPE) {
ERR("Scanning IMAP args failed");
} else if (type == IMAP_TYPE) {
ERR("Scanning POP3 args failed");
} else if (type == IMAP_TYPE) {
ERR("Scanning IMAP args failed");
}
return 0;
}