Skip to content

Commit

Permalink
Add namespace to FS references in CertStore (#7413)
Browse files Browse the repository at this point in the history
Fixes #7410
  • Loading branch information
earlephilhower committed Jun 29, 2020
1 parent 52f4cc8 commit d85ff6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/ESP8266WiFi/src/CertStoreBearSSL.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ class CertStore {
~CertStore();

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

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

protected:
FS *_fs = nullptr;
fs::FS *_fs = nullptr;
char *_indexName = nullptr;
char *_dataName = nullptr;
X509List *_x509 = nullptr;
Expand Down

0 comments on commit d85ff6e

Please sign in to comment.