stephb9959
2023-10-06 09:27:23 -07:00
parent 6575e47c74
commit ae9c464fb3

View File

@@ -19,9 +19,8 @@ namespace OpenWifi {
std::istringstream os(Chain);
std::string CurrentCert;
bool InCert = false;
while(os.good()) {
std::string Line;
os >> Line;
std::string Line;
while(std::getline(os,Line)) {
std::cout << Line << std::endl;
if(Line=="-----BEGIN CERTIFICATE-----") {
InCert = true;