* Fix rooms.c call to citedit()
authorArt Cancro <ajc@citadel.org>
Thu, 4 Mar 2010 20:02:46 +0000 (20:02 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 4 Mar 2010 20:02:46 +0000 (20:02 +0000)
citadel/textclient/rooms.c

index 5fbc76c7f78c210fd8b7657d2c26fd8eddf2aa9a..3bd9698dcdda95d7f1f849e0b82808252679c406 100644 (file)
@@ -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);
        }