We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfed956 commit 15eacd3Copy full SHA for 15eacd3
general/lib/io/config_file.c
@@ -59,15 +59,15 @@ char *conf_opts_root_dir(char *opt) {
59
int conf_read_opt(int argc, char *argv[], struct Configs *configs) {
60
int opt;
61
62
- while ((opt = getopt(argc, argv, "m:d:p:i:h")) != -1) {
+ while ((opt = getopt(argc, argv, "m:d:p:i:s")) != -1) {
63
switch (opt) {
64
case 'p':
65
configs->port_number = conf_opts_port_number(optarg);
66
break;
67
case 'm':
68
configs->mode_concurrency = conf_opts_mode_concurrency(optarg);
69
70
- case 'h':
+ case 's':
71
DOS_PROTECTION = 1;
72
73
case 'i':
0 commit comments