diff --git a/Changes b/Changes index b01ce57ec..20c017d33 100644 --- a/Changes +++ b/Changes @@ -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) diff --git a/include/struct.h b/include/struct.h index 293df444d..b4d939b1a 100644 --- a/include/struct.h +++ b/include/struct.h @@ -1473,7 +1473,7 @@ struct Command { struct ThrottlingBucket { - struct ThrottlingBucket *next, *prev; + struct ThrottlingBucket *prev, *next; struct IN_ADDR in; time_t since; };