MSGS command can now do full text search on the room
[citadel.git] / citadel / serv_fulltext.c
index 9c6f1d896167b69c5bd07f8da82bad2b808fcafd..ab78a7428c2ac08b40b5de6eb8c3ace0aea8baaf 100644 (file)
@@ -208,7 +208,7 @@ void ft_index_msg(long msgnum, void *userdata) {
 void ft_index_room(struct ctdlroom *qrbuf, void *data)
 {
        getroom(&CC->room, qrbuf->QRname);
-       CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, ft_index_msg, NULL);
+       CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL, ft_index_msg, NULL);
 }