Skip to content

Commit ecdc2c9

Browse files
authored
Merge pull request arduino-libraries#20 from manchoz/manchoz_nosni_fix
Fix local TA + implicit noSNI constructor
2 parents f5674ef + 549c7ae commit ecdc2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BearSSLClient.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ BearSSLClient::BearSSLClient(Client& client, bool noSNI) :
4141
}
4242

4343
BearSSLClient::BearSSLClient(Client& client, const br_x509_trust_anchor* myTAs, int myNumTAs) :
44-
BearSSLClient(client, TAs, TAs_NUM, false)
44+
BearSSLClient(client, myTAs, myNumTAs, false)
4545
{
4646
}
4747

0 commit comments

Comments
 (0)