- Timestamp:
- 2011-12-19T14:50:58Z (13 years ago)
- Branches:
- master
- Children:
- 78b8401
- Parents:
- 5a48afd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.c
r5a48afd r486ddb5 67 67 conf->ft_listen = NULL; 68 68 conf->protocols = NULL; 69 conf->cafile = NULL; 69 70 proxytype = 0; 70 71 … … 340 341 conf->protocols = g_strsplit_set( ini->value, " \t,;", -1 ); 341 342 } 343 else if( g_strcasecmp( ini->key, "cafile" ) == 0 ) 344 { 345 g_free( conf->cafile ); 346 conf->cafile = g_strdup( ini->value ); 347 } 342 348 else 343 349 {
Note: See TracChangeset
for help on using the changeset viewer.