* migrated to new hash create signature
[citadel.git] / webcit / who.c
index 8af2c8fa9c151948ef9795bde9925c8686a1f3db..50677c93715dd03d2517d033edcd567e6bd314a3 100644 (file)
@@ -140,7 +140,7 @@ void who_inner_div(void) {
                now = time(NULL);
        }
 
-       List = NewHash();
+       List = NewHash(1, NULL);
 
        if (GetWholistSection(List, now)) {
                it = GetNewHashPos();
@@ -408,7 +408,7 @@ void wholist_section(void) {
                now = time(NULL);
        }
 
-       List = NewHash();
+       List = NewHash(1, NULL);
 
        if (GetWholistSection(List, now)) {
                SortByPayload(List, CompareUserStruct);