Skip to content

Commit d85ff6e

Browse files
Add namespace to FS references in CertStore (#7413)
Fixes #7410
1 parent 52f4cc8 commit d85ff6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/ESP8266WiFi/src/CertStoreBearSSL.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ class CertStore {
3737
~CertStore();
3838

3939
// Set the file interface instances, do preprocessing
40-
int initCertStore(FS &fs, const char *indexFileName, const char *dataFileName);
40+
int initCertStore(fs::FS &fs, const char *indexFileName, const char *dataFileName);
4141

4242
// Installs the cert store into the X509 decoder (normally via static function callbacks)
4343
void installCertStore(br_x509_minimal_context *ctx);
4444

4545
protected:
46-
FS *_fs = nullptr;
46+
fs::FS *_fs = nullptr;
4747
char *_indexName = nullptr;
4848
char *_dataName = nullptr;
4949
X509List *_x509 = nullptr;

0 commit comments

Comments
 (0)