diff options
author | Benny Baumann <BenBE@geshi.org> | 2015-07-26 23:47:25 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2015-07-26 23:47:25 +0200 |
commit | 3c8261031957cc9418a9e185cdb70084653c936e (patch) | |
tree | c89800914d14d6b53e8a75541c7f622edb1a39f1 | |
parent | 69cbc101efa4a568e92d98d97bfc1e0f41d68e41 (diff) | |
download | cacert-devel-3c8261031957cc9418a9e185cdb70084653c936e.tar.gz cacert-devel-3c8261031957cc9418a9e185cdb70084653c936e.tar.xz cacert-devel-3c8261031957cc9418a9e185cdb70084653c936e.zip |
bug 1392: correct a variable mixup causing all SANs in CSRs to be rejectedbug-1392
-rw-r--r-- | includes/general.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/general.php b/includes/general.php index e6e440f..2eef65e 100644 --- a/includes/general.php +++ b/includes/general.php @@ -356,7 +356,7 @@ } } - if(!preg_match("/(?=^.{4,253}$)(^(?:\\*\\.)?((?!-)[a-zA-Z0-9_-]{1,63}(?<!-)\\.)+[a-zA-Z]{2,63}$)/i", $subalt)) { + if(!preg_match("/(?=^.{4,253}$)(^(?:\\*\\.)?((?!-)[a-zA-Z0-9_-]{1,63}(?<!-)\\.)+[a-zA-Z]{2,63}$)/i", $alt)) { $altok = 0; } @@ -455,7 +455,7 @@ } } - if(!preg_match("/(?=^.{4,253}$)(^(?:\\*\\.)?((?!-)[a-zA-Z0-9_-]{1,63}(?<!-)\\.)+[a-zA-Z]{2,63}$)/i", $subalt)) { + if(!preg_match("/(?=^.{4,253}$)(^(?:\\*\\.)?((?!-)[a-zA-Z0-9_-]{1,63}(?<!-)\\.)+[a-zA-Z]{2,63}$)/i", $alt)) { continue; } |