Changeset 365dd59
- Timestamp:
- 2019-05-23T08:57:02Z (6 years ago)
- Branches:
- master
- Children:
- 10b3683
- Parents:
- fe122f3
- git-author:
- Ævar Arnfjörð Bjarmason <avarab@…> (22-05-19 20:56:41)
- git-committer:
- Ævar Arnfjörð Bjarmason <avarab@…> (23-05-19 08:57:02)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.c
rfe122f3 r365dd59 277 277 g_free(conf->motdfile); 278 278 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) { 280 281 g_free(conf->primary_storage); 281 282 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) { 283 285 g_strfreev(conf->migrate_storage); 284 286 conf->migrate_storage = g_strsplit_set(ini->value, " \t,;", -1);
Note: See TracChangeset
for help on using the changeset viewer.