Skip to content

Commit

Permalink
fix: shorten wait time
Browse files Browse the repository at this point in the history
  • Loading branch information
Zxilly committed Aug 10, 2021
1 parent c8a11a1 commit 6fe0b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ua2f.c
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ int main(int argc, char *argv[]) {
}
}
errcount++;
if (errcount > 50) {
if (errcount > 10) {
syslog(LOG_ERR, "Meet too many fatal error, no longer try to recover.");
syslog(LOG_ERR, "Exit at breakpoint 3.");
exit(EXIT_FAILURE);
Expand Down

0 comments on commit 6fe0b26

Please sign in to comment.