Exit on unknown options

このコミットが含まれているのは:
2025-11-08 15:12:10 +01:00
コミット 50af69c659

ファイルの表示

@@ -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);
}
}