From: Art Cancro Date: Thu, 21 May 2009 19:51:59 +0000 (+0000) Subject: * Applied matt's patch for making +/- work properly X-Git-Tag: v7.86~1144 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=7a32df880e27d507d099848062b2fcaed1c5e283;p=citadel.git * Applied matt's patch for making +/- work properly --- diff --git a/citadel/citadel.c b/citadel/citadel.c index 5dca5ccee..f8eb4e142 100644 --- a/citadel/citadel.c +++ b/citadel/citadel.c @@ -768,16 +768,6 @@ void gotoroomstep(CtdlIPC *ipc, int direction, int mode) char rmname[ROOMNAMELEN]; int rmslot = 0; int rmtotal; - struct ctdlroom *attr = NULL; - - /* Fetch the existing room config */ - r = CtdlIPCGetRoomAttributes(ipc, &attr, buf); - if (r / 100 != 2) { - scr_printf("%s\n", buf); - return; - } - strcpy (room_name , attr->QRname); - free(attr); /* Ask the server for a room list */ r = CtdlIPCKnownRooms(ipc, SubscribedRooms, (-1), &listing, buf);