Initialize TSD key earlier in the startup process. Newer Linux/Linux distributions...
[citadel.git] / citadel / user_ops.c
index b9a357db90aa3182a3a6a69dc5adf057e174610a..f8c74445d9a89bd3ed4068042bb511fe6b85fd1c 100644 (file)
@@ -1180,10 +1180,9 @@ void ForEachUser(void (*CallBack) (char *, void *out_data), void *in_data)
 
        // Phase 2 : perform the callback for each username
        for (i=0; i<num_users; ++i) {
-               syslog(LOG_DEBUG, "user_ops: %3d %3d %s", i, usernames[i].version, usernames[i].username);      // FIXME
-               if (usernames[i].version < 927) {
-                       // FIXME we have to reindex this record
-               }
+               //if (usernames[i].version < 927) {
+                       // FIXME This is where we will do the reindexing stuff
+               //}
                (*CallBack) (usernames[i].username, in_data);
        }