Changeset 486ddb5 for conf.c


Ignore:
Timestamp:
2011-12-19T14:50:58Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
78b8401
Parents:
5a48afd
Message:

Initial merge of tls_verify patch from AopicieR.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    r5a48afd r486ddb5  
    6767        conf->ft_listen = NULL;
    6868        conf->protocols = NULL;
     69        conf->cafile = NULL;
    6970        proxytype = 0;
    7071       
     
    340341                                conf->protocols = g_strsplit_set( ini->value, " \t,;", -1 );
    341342                        }
     343                        else if( g_strcasecmp( ini->key, "cafile" ) == 0 )
     344                        {
     345                                g_free( conf->cafile );
     346                                conf->cafile = g_strdup( ini->value );
     347                        }
    342348                        else
    343349                        {
Note: See TracChangeset for help on using the changeset viewer.