Fixed a throttling bug

This commit is contained in:
codemastr 2003-02-03 21:38:02 +00:00
parent 39be4901df
commit 1efcc56dce
2 changed files with 2 additions and 1 deletions

View file

@ -1866,3 +1866,4 @@ seen. gmtime warning still there
- Added better (specific) link error messages (only on the "incomming" side) so you can easily
see whether servername, hostname/ip or username is wrong.
- Added recvq column to /stats y reply.
- Fixed a throttling bug reported by Ely (#0000704)

View file

@ -1473,7 +1473,7 @@ struct Command {
struct ThrottlingBucket
{
struct ThrottlingBucket *next, *prev;
struct ThrottlingBucket *prev, *next;
struct IN_ADDR in;
time_t since;
};