]> code.citadel.org Git - citadel.git/blobdiff - citadel/room_ops.c
Added last mod time to all room list cmds
[citadel.git] / citadel / room_ops.c
index b96c73a100647abc0bfad33b49b678fe5edc0b0c..c598aa5292b9e7e79f26e2e8a879d400bc98772e 100644 (file)
@@ -520,14 +520,15 @@ void list_roomname(struct ctdlroom *qrbuf, int ra, int current_view, int default
        }
 
        /* ...and now the other parameters */
-       cprintf("|%u|%d|%d|%d|%d|%d|%d|\n",
+       cprintf("|%u|%d|%d|%d|%d|%d|%d|%ld|\n",
                qrbuf->QRflags,
                (int) qrbuf->QRfloor,
                (int) qrbuf->QRorder,
                (int) qrbuf->QRflags2,
                ra,
                current_view,
-               default_view
+               default_view,
+               qrbuf->QRmtime
        );
 }