- Timestamp:
- 2008-02-16T16:25:24Z (17 years ago)
- Branches:
- master
- Children:
- 4eb4c0f
- Parents:
- 903a2fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.c
r903a2fc r8961950 61 61 conf->pidfile = g_strdup( PIDFILE ); 62 62 conf->motdfile = g_strdup( ETCDIR "/motd.txt" ); 63 conf->welcomefile = g_strdup( ETCDIR "/welcome.txt" ); 63 64 conf->ping_interval = 180; 64 65 conf->ping_timeout = 300; … … 240 241 g_free( conf->motdfile ); 241 242 conf->motdfile = g_strdup( ini->value ); 243 } 244 else if( g_strcasecmp( ini->key, "welcomefile" ) == 0 ) 245 { 246 g_free( conf->welcomefile ); 247 conf->welcomefile = g_strdup( ini->value ); 242 248 } 243 249 else if( g_strcasecmp( ini->key, "account_storage" ) == 0 )
Note: See TracChangeset
for help on using the changeset viewer.