From: Art Cancro Date: Thu, 4 Mar 2010 20:02:46 +0000 (+0000) Subject: * Fix rooms.c call to citedit() X-Git-Tag: v7.86~338 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=9ae46e171eb28025f11d86efebd06699a44c0e72;p=citadel.git * Fix rooms.c call to citedit() --- diff --git a/citadel/textclient/rooms.c b/citadel/textclient/rooms.c index 5fbc76c7f..3bd9698dc 100644 --- a/citadel/textclient/rooms.c +++ b/citadel/textclient/rooms.c @@ -1,9 +1,23 @@ /* * $Id$ * - * * Client-side functions which perform room operations * + * Copyright (c) 1987-2010 by the citadel.org team + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "sysdep.h" @@ -1242,10 +1256,9 @@ void do_edit(CtdlIPC *ipc, stty_ctdl(0); screen_set(); } else { - scr_printf("Entering %s. " - "Press return twice when finished.\n", desc); + scr_printf("Entering %s. Press return twice when finished.\n", desc); fp = fopen(temp, "r+"); - citedit(ipc, fp); + citedit(fp); fclose(fp); }