Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    r50bb490 r365dd59  
    277277                                g_free(conf->motdfile);
    278278                                conf->motdfile = g_strdup(ini->value);
    279                         } else if (g_strcasecmp(ini->key, "account_storage") == 0) {
     279                        } else if (g_strcasecmp(ini->key, "accountstorage") == 0 ||
     280                                   g_strcasecmp(ini->key, "account_storage") == 0) {
    280281                                g_free(conf->primary_storage);
    281282                                conf->primary_storage = g_strdup(ini->value);
    282                         } else if (g_strcasecmp(ini->key, "account_storage_migrate") == 0) {
     283                        } else if (g_strcasecmp(ini->key, "accountstoragemigrate") == 0 ||
     284                                   g_strcasecmp(ini->key, "account_storage_migrate") == 0) {
    283285                                g_strfreev(conf->migrate_storage);
    284286                                conf->migrate_storage = g_strsplit_set(ini->value, " \t,;", -1);
Note: See TracChangeset for help on using the changeset viewer.