]> code.citadel.org Git - citadel.git/blobdiff - citadel/user_ops.c
* Added support for "transient goto" which allows entry into a private and/or
[citadel.git] / citadel / user_ops.c
index e631efb794bd67646685311bd524b55eee346086..7b16a062b9e66518801f3f1a209f85c6abeb9d26 100644 (file)
@@ -410,7 +410,7 @@ void session_startup(void)
        create_room(SENTITEMS, 4, "", 0, 1, 0);
 
        /* Enter the lobby */
-       usergoto(config.c_baseroom, 0, NULL, NULL);
+       usergoto(config.c_baseroom, 0, 0, NULL, NULL);
 
        /* Record this login in the Citadel log */
        rec_log(CL_LOGIN, CC->curr_user);
@@ -1079,7 +1079,7 @@ int CtdlForgetThisRoom(void) {
        lputuser(&CC->usersupp);
 
        /* Return to the Lobby, so we don't end up in an undefined room */
-       usergoto(config.c_baseroom, 0, NULL, NULL);
+       usergoto(config.c_baseroom, 0, 0, NULL, NULL);
        return(0);
 
 }