Ticket #24: log-filtered.patch
File log-filtered.patch, 805 bytes (added by , 15 years ago) |
---|
-
art.c
old new 1637 1637 continue; 1638 1638 } 1639 1639 1640 if (data->Filtered && sp->DropFiltered) 1641 /* Site does not want filtered articles */ 1642 continue; 1643 1640 1644 /* Write that the site is getting it, and flag to send it. */ 1641 1645 if (innconf->logsitename) { 1642 1646 if (fprintf(Log, " %s", sp->Name) == EOF || ferror(Log)) { … … 2425 2429 /* And finally, send to everyone who should get it */ 2426 2430 for (sp = Sites, i = nSites; --i >= 0; sp++) { 2427 2431 if (sp->Sendit) { 2428 if (!Filtered || !sp->DropFiltered) { 2429 TMRstart(TMR_SITESEND); 2430 SITEsend(sp, data); 2431 TMRstop(TMR_SITESEND); 2432 } 2432 TMRstart(TMR_SITESEND); 2433 SITEsend(sp, data); 2434 TMRstop(TMR_SITESEND); 2433 2435 } 2434 2436 }