Skip to content

Commit

Permalink
Still accept --no-crc-check option (but ignore/warn about it)
Browse files Browse the repository at this point in the history
  • Loading branch information
mutability committed Oct 6, 2022
1 parent e690a8f commit 8f994f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dump1090.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,8 @@ int main(int argc, char **argv) {
Modes.nfix_crc = 0;
} else if (!strcmp(argv[j],"--no-fix-df")) {
Modes.fix_df = 0;
} else if (!strcmp(argv[j],"--no-crc-check")) {
fprintf(stderr, "warning: --no-crc-check no longer supported, option ignored (please raise an issue on github if you have a usecase that needs this)\n");
} else if (!strcmp(argv[j],"--phase-enhance")) {
// Ignored, always enabled
} else if (!strcmp(argv[j],"--raw")) {
Expand Down

0 comments on commit 8f994f9

Please sign in to comment.