Lines Matching refs:fInCert
554 FILE *fInCert = NULL;
573 fInCert = fopen(data->set.ssl.primary.clientcert, "rb");
575 if(result && !fInCert) {
584 if((fInCert || blob) && (data->set.ssl.cert_type) &&
593 if(fInCert || blob) {
605 if(fInCert) {
607 bool continue_reading = fseek(fInCert, 0, SEEK_END) == 0;
609 cert_tell = ftell(fInCert);
615 continue_reading = fseek(fInCert, 0, SEEK_SET) == 0;
619 ((int) fread(certdata, certsize, 1, fInCert) != 1))
621 fclose(fInCert);