Skip to content

Commit

Permalink
Fix fox 16f2a8f
Browse files Browse the repository at this point in the history
  • Loading branch information
ValdikSS committed Aug 8, 2024
1 parent 9bb1bc5 commit dcff838
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/goodbyedpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <ctype.h>
#include <signal.h>
#include <unistd.h>
Expand Down Expand Up @@ -941,7 +942,7 @@ int main(int argc, char *argv[]) {
break;
case '?': // --debug-exit
debug_exit = true;
break
break;
default:
puts("Usage: goodbyedpi.exe [OPTION...]\n"
" -p block passive DPI\n"
Expand Down Expand Up @@ -1122,7 +1123,7 @@ int main(int argc, char *argv[]) {
die();
}
if (debug_exit) {
exit(EXIT_SUCCESS);
exit(EXIT_SUCCESS);
}
printf("Filter activated, GoodbyeDPI is now running!\n");
signal(SIGINT, sigint_handler);
Expand Down

0 comments on commit dcff838

Please sign in to comment.