fix: move 0:/etc/ => 0:/os/certs/

This commit is contained in:
2026-05-28 20:30:00 +02:00
parent e0778c1b2c
commit e17a8de844
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ namespace tls {
TrustAnchors load_trust_anchors() {
TrustAnchors tas = {nullptr, 0, 0};
int fh = montauk::open("0:/etc/ca-certificates.crt");
int fh = montauk::open("0:/os/certs/ca-certificates.crt");
if (fh < 0) return tas;
uint64_t fsize = montauk::getsize(fh);
if (fsize == 0 || fsize > 512 * 1024) { montauk::close(fh); return tas; }