- Timestamp:
- 2005-12-08T13:41:53Z (17 years ago)
- Branches:
- master
- Children:
- a1f17d4
- Parents:
- d636233
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.c
rd636233 r1ee6c18 50 50 conf->nofork = 0; 51 51 conf->verbose = 0; 52 conf->storage = "text"; 52 53 conf->runmode = RUNMODE_INETD; 53 54 conf->authmode = AUTHMODE_OPEN; … … 198 199 conf->motdfile = g_strdup( ini->value ); 199 200 } 201 else if( g_strcasecmp( ini->key, "storage" ) == 0 ) 202 { 203 g_free( conf->storage ); 204 conf->storage = g_strdup( ini->value ); 205 } 200 206 else if( g_strcasecmp( ini->key, "pinginterval" ) == 0 ) 201 207 {
Note: See TracChangeset
for help on using the changeset viewer.