Index: sys/netinet/libalias/alias_db.c =================================================================== --- sys/netinet/libalias/alias_db.c +++ sys/netinet/libalias/alias_db.c @@ -1769,7 +1769,7 @@ * Reduce the amount of house keeping work substantially by * sampling over the packets. */ - if (packet_limit <= 1 || packets % packet_limit == 0) { + if (packets % packet_limit == 0) { time_t now; #ifdef _KERNEL @@ -1779,7 +1779,7 @@ #endif if (now != LibAliasTime) { /* retry three times a second */ - packet_limit = packets / 3; + packet_limit = packets / 3 + 10; packets = 0; LibAliasTime = now; }