Changes in / [8a220893:f89cdbd]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    r8a220893 rf89cdbd  
    277277                                g_free(conf->motdfile);
    278278                                conf->motdfile = g_strdup(ini->value);
    279                         } else if (g_strcasecmp(ini->key, "accountstorage") == 0 ||
    280                                    g_strcasecmp(ini->key, "account_storage") == 0) {
     279                        } else if (g_strcasecmp(ini->key, "account_storage") == 0) {
    281280                                g_free(conf->primary_storage);
    282281                                conf->primary_storage = g_strdup(ini->value);
    283                         } else if (g_strcasecmp(ini->key, "accountstoragemigrate") == 0 ||
    284                                    g_strcasecmp(ini->key, "account_storage_migrate") == 0) {
     282                        } else if (g_strcasecmp(ini->key, "account_storage_migrate") == 0) {
    285283                                g_strfreev(conf->migrate_storage);
    286284                                conf->migrate_storage = g_strsplit_set(ini->value, " \t,;", -1);
  • unix.c

    r8a220893 rf89cdbd  
    8080
    8181        log_init();
    82         /* Catch early errors */
    83         log_link(LOGLVL_ERROR, LOGOUTPUT_CONSOLE);
    84         log_link(LOGLVL_WARNING, LOGOUTPUT_CONSOLE);
    8582
    8683        global.conf_file = g_strdup(CONF_FILE_DEF);
Note: See TracChangeset for help on using the changeset viewer.