1
0

Exit on unknown options

Este cometimento está contido em:
2025-11-08 15:12:10 +01:00
ascendente 5f3e73e592
cometimento 50af69c659

Ver ficheiro

@@ -637,6 +637,9 @@ void parse_options(int argc, char **argv)
awaited_child_exit_code = atoi(optarg);
}
break;
case '?':
logerror("Invalid option provided. Exiting\n");
exit(EXIT_FAILURE);
}
}