X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=citadel%2Fmodules%2Fpop3client%2Fserv_pop3client.c;h=63f709e16815c809cc0aabeb6581c1125c79809b;hp=dc9fbd04040047e61cbbc622f0a519dd5ae08802;hb=321595f551d9e009f54b564b8459a293fe431fc4;hpb=9d41b26e73e883311b37ee8b838e11abee2f48d7 diff --git a/citadel/modules/pop3client/serv_pop3client.c b/citadel/modules/pop3client/serv_pop3client.c index dc9fbd040..63f709e16 100644 --- a/citadel/modules/pop3client/serv_pop3client.c +++ b/citadel/modules/pop3client/serv_pop3client.c @@ -132,7 +132,7 @@ void pop3client_one_mailbox(char *room, const char *host, const char *user, cons // Make up the Use Table record so we can check if we've already seen this message. StrBuf *UT = NewStrBuf(); StrBufPrintf(UT, "pop3/%s/%s:%s@%s", room, oneuidl, user, host); - time_t already_seen = CheckIfAlreadySeen(UT, time(NULL), 0, eUpdate); + int already_seen = CheckIfAlreadySeen(UT); FreeStrBuf(&UT); // Only fetch the message if we haven't seen it before.