parent
1ec4ff28d6
commit
6acc2c99df
|
@ -527,7 +527,11 @@ class m_ssl {
|
|||
$found = true;
|
||||
break;
|
||||
}
|
||||
$offset = strpos($fqdn, ".", $offset);
|
||||
$offset = strpos($fqdn, ".", $offset+1);
|
||||
//No more dot, we prevent an infinite loop
|
||||
if (!$offset) {
|
||||
break;
|
||||
}
|
||||
} while (true);
|
||||
if (!$found) {
|
||||
echo "FATAL: didn't found fqdn $fqdn in sub_domaines table !\n";
|
||||
|
|
Loading…
Reference in New Issue