- Timestamp:
- 2005-12-13T23:07:05Z (19 years ago)
- Branches:
- master
- Children:
- 6aaa221
- Parents:
- 34759e6 (diff), b73ac9c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.c
r34759e6 rd3307e2 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.