Skip to content

Commit 7086751

Browse files
authored
Update verify_ssn.cc to fix new format
Fixes owasp-modsecurity#2970
1 parent 60f802e commit 7086751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/operators/verify_ssn.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ bool VerifySSN::verify(const char *ssnumber, int len) {
100100
goto invalid;
101101

102102
/* More tests */
103-
if (area >= 740 || area == 666)
103+
if (area == 666)
104104
goto invalid;
105105

106106
return true;

0 commit comments

Comments
 (0)