Differences From Artifact [d864b016d9]:
- File src/http_ssl.c — part of check-in [aa5bddda68] at 2024-11-04 12:54:24 on branch httpmsg-debug — Improvements to the diagnostic output from the test-trust-store command. (user: drh size: 40736)
To Artifact [4e6a653891]:
- File src/http_ssl.c — part of check-in [735bd3dccb] at 2024-11-04 13:09:01 on branch httpmsg-debug — Fix (harmless) off-by-one error in the new test-trust-store command. (user: drh size: 40761) [more...]
| ︙ | |||
299 300 301 302 303 304 305 306 307 308 309 310 311 312 | 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | + |
}
case 2: { /* file */
zCaFile = zFile;
zCaDirectory = 0;
break;
}
}
if( zFile ) break;
}
if( bDebug ){
fossil_print("case-0: X509_get_default_cert_file_env = %s\n",
X509_get_default_cert_file_env());
fossil_print("case-1: X509_get_default_cert_dir_env = %s\n",
X509_get_default_cert_dir_env());
fossil_print("case-2: ssl-ca-location = %s\n",
|
| ︙ |