Changeset devel,68.1.1 for devel/conf.c
- Timestamp:
- 2005-12-08T13:41:53Z (5 years ago)
- branch-nick:
- storage
- revision id:
- jelmer@samba.org-20051208134153-f3ce614312745152
- Files:
-
- 1 modified
-
devel/conf.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
devel/conf.c
r11 r68.1.1 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 {
