|
Lines 55-61
Link Here
|
| 55 |
int d_flag; /* -d: direct connection */ |
55 |
int d_flag; /* -d: direct connection */ |
| 56 |
int F_flag; /* -F: restart without checking mtime */ |
56 |
int F_flag; /* -F: restart without checking mtime */ |
| 57 |
char *f_filename; /* -f: file to fetch */ |
57 |
char *f_filename; /* -f: file to fetch */ |
| 58 |
int H_flag; /* -H: use high port */ |
58 |
int H_flag = 1; /* -H: use high port */ |
| 59 |
char *h_hostname; /* -h: host to fetch from */ |
59 |
char *h_hostname; /* -h: host to fetch from */ |
| 60 |
int l_flag; /* -l: link rather than copy file: URLs */ |
60 |
int l_flag; /* -l: link rather than copy file: URLs */ |
| 61 |
int m_flag; /* -[Mm]: mirror mode */ |
61 |
int m_flag; /* -[Mm]: mirror mode */ |
|
Lines 537-543
Link Here
|
| 537 |
int c, e, r; |
537 |
int c, e, r; |
| 538 |
|
538 |
|
| 539 |
while ((c = getopt(argc, argv, |
539 |
while ((c = getopt(argc, argv, |
| 540 |
"146AaB:bc:dFf:h:lHMmnPpo:qRrS:sT:tvw:")) != EOF) |
540 |
"146AaB:bc:dFf:h:lHMmnPpo:qRrS:sT:tUvw:")) != EOF) |
| 541 |
switch (c) { |
541 |
switch (c) { |
| 542 |
case '1': |
542 |
case '1': |
| 543 |
once_flag = 1; |
543 |
once_flag = 1; |
|
Lines 625-630
Link Here
|
| 625 |
case 't': |
625 |
case 't': |
| 626 |
t_flag = 1; |
626 |
t_flag = 1; |
| 627 |
warnx("warning: the -t option is deprecated"); |
627 |
warnx("warning: the -t option is deprecated"); |
|
|
628 |
break; |
| 629 |
case 'U': |
| 630 |
H_flag = 0; |
| 628 |
break; |
631 |
break; |
| 629 |
case 'v': |
632 |
case 'v': |
| 630 |
v_level++; |
633 |
v_level++; |