ROOMLIST: start with n = 0 instead of random.
authorWilfried Goesgens <dothebart@citadel.org>
Sun, 28 Oct 2012 11:21:24 +0000 (12:21 +0100)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 28 Oct 2012 11:21:24 +0000 (12:21 +0100)
webcit/roomlist.c

index 653f01aa1be0288f8b4c9b46ec4f02d3c4b92e35..129d60bc079b0141a5394046e877c7d014100047 100644 (file)
@@ -13,7 +13,7 @@ HashList *GetWhoKnowsHash(StrBuf *Target, WCTemplputParams *TP)
        long State;
        HashList *Whok = NULL;
        int Done = 0;
-       int n;
+       int n = 0;
 
        serv_puts("WHOK");
        Line = NewStrBuf();