Removing dead code for no longer supported -G switch.

This commit is contained in:
Robin Sommer 2015-06-19 16:26:40 -07:00
parent ffa254acd0
commit b98708bf14
5 changed files with 6 additions and 11 deletions

View file

@ -490,7 +490,6 @@ int main(int argc, char** argv)
{"analyze", required_argument, 0, 'z'},
{"no-checksums", no_argument, 0, 'C'},
{"force-dns", no_argument, 0, 'F'},
{"load-seeds", required_argument, 0, 'G'},
{"save-seeds", required_argument, 0, 'H'},
{"set-seed", required_argument, 0, 'J'},
{"md5-hashkey", required_argument, 0, 'K'},
@ -650,10 +649,6 @@ int main(int argc, char** argv)
dns_type = DNS_FORCE;
break;
case 'G':
seed_load_file = optarg;
break;
case 'H':
seed_save_file = optarg;
break;