Updated the CtdlUserGoto() API call to also return the oldest and newest message...
[citadel.git] / citadel / user_ops.c
index c79e87abd04dd40c86e3e23a3c61297aa1ef7bb5..270ca87dbe48590d1093f81e34cee0c5b226dec9 100644 (file)
@@ -745,7 +745,7 @@ void do_login(void)
        PerformSessionHooks(EVT_LOGIN);
 
        /* Enter the lobby */
-       CtdlUserGoto(config.c_baseroom, 0, 0, NULL, NULL);
+       CtdlUserGoto(config.c_baseroom, 0, 0, NULL, NULL, NULL, NULL);
 }
 
 
@@ -1293,7 +1293,7 @@ int CtdlForgetThisRoom(void) {
        CtdlPutUserLock(&CC->user);
 
        /* Return to the Lobby, so we don't end up in an undefined room */
-       CtdlUserGoto(config.c_baseroom, 0, 0, NULL, NULL);
+       CtdlUserGoto(config.c_baseroom, 0, 0, NULL, NULL, NULL, NULL);
        return(0);
 
 }