We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52f4cc8 commit d85ff6eCopy full SHA for d85ff6e
libraries/ESP8266WiFi/src/CertStoreBearSSL.h
@@ -37,13 +37,13 @@ class CertStore {
37
~CertStore();
38
39
// Set the file interface instances, do preprocessing
40
- int initCertStore(FS &fs, const char *indexFileName, const char *dataFileName);
+ int initCertStore(fs::FS &fs, const char *indexFileName, const char *dataFileName);
41
42
// Installs the cert store into the X509 decoder (normally via static function callbacks)
43
void installCertStore(br_x509_minimal_context *ctx);
44
45
protected:
46
- FS *_fs = nullptr;
+ fs::FS *_fs = nullptr;
47
char *_indexName = nullptr;
48
char *_dataName = nullptr;
49
X509List *_x509 = nullptr;
0 commit comments