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