]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_upgrade.c
* citadel.h (and related files): removed defunct parameters,
[citadel.git] / citadel / serv_upgrade.c
index 563d4e6086c927256e1cd1a58dbbce550a0a8c70..35c6e8677c4e0a6b3897ab32baf2a3bddfdadb44 100644 (file)
@@ -3,6 +3,8 @@
  * an older version of Citadel, or a different hardware architecture, or
  * whatever.  You should only run an import when your installed system is
  * brand new and _empty_ !!
+ *
+ * $Id$
  */
 
 #include <stdlib.h>
@@ -366,8 +368,6 @@ void imp_config(void) {
                        config.c_twitdetect = atoi(value);
                if (!strcasecmp(key, "c_twitroom"))
                        strcpy(config.c_twitroom, value);
-               if (!strcasecmp(key, "c_defent"))
-                       config.c_defent = atoi(value);
                if (!strcasecmp(key, "c_moreprompt"))
                        strcpy(config.c_moreprompt, value);
                if (!strcasecmp(key, "c_restrict"))
@@ -646,7 +646,6 @@ void do_export(char *argbuf) {
        fprintf(exfp, "c_regiscall%c%d%c", 0, config.c_regiscall, 0);
        fprintf(exfp, "c_twitdetect%c%d%c", 0, config.c_twitdetect, 0);
        fprintf(exfp, "c_twitroom%c%s%c", 0, config.c_twitroom, 0);
-       fprintf(exfp, "c_defent%c%d%c", 0, config.c_defent, 0);
        fprintf(exfp, "c_moreprompt%c%s%c", 0, config.c_moreprompt, 0);
        fprintf(exfp, "c_restrict%c%d%c", 0, config.c_restrict, 0);
        fprintf(exfp, "c_bbs_city%c%s%c", 0, config.c_bbs_city, 0);