Fossil

Check-in [735bd3dc]
Login

Check-in [735bd3dc]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix (harmless) off-by-one error in the new test-trust-store command.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | httpmsg-debug
Files: files | file ages | folders
SHA3-256: 735bd3dccbeecada15611a1eacf76d2b9822f44223a918282ac4eab0acb78c5f
User & Date: drh 2024-11-04 13:09:01
Context
2024-11-05
09:55
Merge from trunk ... (check-in: e367ca73 user: brickviking tags: bv-corrections01)
05:57
Create new branch named "bv-infotool" ... (check-in: e413dc32 user: brickviking tags: bv-infotool)
2024-11-04
13:09
Fix (harmless) off-by-one error in the new test-trust-store command. ... (Leaf check-in: 735bd3dc user: drh tags: httpmsg-debug)
12:54
Improvements to the diagnostic output from the test-trust-store command. ... (check-in: aa5bddda user: drh tags: httpmsg-debug)
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to src/http_ssl.c.

299
300
301
302
303
304
305

306
307
308
309
310
311
312
        }
        case 2: { /* file */
          zCaFile = zFile;
          zCaDirectory = 0;
          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",







>







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",