1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2025-01-08 06:02:51 +08:00

fix getopt usage (C) unknown author

This commit is contained in:
rofl0r 2011-09-10 23:13:26 +02:00
parent c377789d14
commit b1febc25d6

View File

@ -46,15 +46,15 @@ int main(int argc, char *argv[]) {
int opt;
int start_argv = 1;
while ((opt = getopt(argc, argv, "fh:")) != -1) {
while ((opt = getopt(argc, argv, "hf:")) != -1) {
switch (opt) {
case 'h':
usage(argv);
break;
return EXIT_SUCCESS;
case 'f':
path = (char *)optarg;
if(!path) {
printf("error: no path supplied.");
printf("error: no path supplied.\n");
return(EXIT_FAILURE);
}
start_argv = 3;