From db43da95b465822391650fb0ddbd94aecdc6a6f0 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 2 Jul 2012 16:55:48 -0400 Subject: [PATCH] Include QRmtime in the list of values returned by GOTO --- citadel/room_ops.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/citadel/room_ops.c b/citadel/room_ops.c index 13ed6ef61..4fb1501cd 100644 --- a/citadel/room_ops.c +++ b/citadel/room_ops.c @@ -1039,7 +1039,7 @@ void CtdlUserGoto(char *where, int display_result, int transiently, CCC->curr_view = (int)vbuf.v_view; if (display_result) { - cprintf("%d%c%s|%d|%d|%d|%d|%ld|%ld|%d|%d|%d|%d|%d|%d|%d|%d|\n", + cprintf("%d%c%s|%d|%d|%d|%d|%ld|%ld|%d|%d|%d|%d|%d|%d|%d|%d|%ld|\n", CIT_OK, CtdlCheckExpress(), truncated_roomname, (int)new_messages, @@ -1055,7 +1055,8 @@ void CtdlUserGoto(char *where, int display_result, int transiently, (int)vbuf.v_view, (int)CCC->room.QRdefaultview, (int)is_trash, - (int)CCC->room.QRflags2 + (int)CCC->room.QRflags2, + (long)CCC->room.QRmtime ); } } -- 2.30.2