Skip to content

Commit

Permalink
Update verify_ssn.cc to fix new format
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubsuchy authored Aug 21, 2023
1 parent 60f802e commit 7086751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operators/verify_ssn.cc
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ bool VerifySSN::verify(const char *ssnumber, int len) {
goto invalid;

/* More tests */
if (area >= 740 || area == 666)
if (area == 666)
goto invalid;

return true;
Expand Down

0 comments on commit 7086751

Please sign in to comment.