- Timestamp:
- 2005-12-13T23:05:27Z (19 years ago)
- Branches:
- master
- Children:
- d3307e2
- Parents:
- a301379c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.c
ra301379c rb73ac9c 50 50 conf->nofork = 0; 51 51 conf->verbose = 0; 52 conf-> storage = "text";52 conf->primary_storage = "text"; 53 53 conf->runmode = RUNMODE_INETD; 54 54 conf->authmode = AUTHMODE_OPEN; … … 199 199 conf->motdfile = g_strdup( ini->value ); 200 200 } 201 else if( g_strcasecmp( ini->key, "storage" ) == 0 ) 202 { 203 g_free( conf->storage ); 204 conf->storage = g_strdup( ini->value ); 201 else if( g_strcasecmp( ini->key, "account_storage" ) == 0 ) 202 { 203 g_free( conf->primary_storage ); 204 conf->primary_storage = g_strdup( ini->value ); 205 } 206 else if( g_strcasecmp( ini->key, "account_storage_migrate" ) == 0 ) 207 { 208 g_strfreev( conf->migrate_storage ); 209 conf->migrate_storage = g_strsplit( ini->value, " \t,;", -1 ); 205 210 } 206 211 else if( g_strcasecmp( ini->key, "pinginterval" ) == 0 )
Note: See TracChangeset
for help on using the changeset viewer.