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

@ -1,13 +1,13 @@
2.4-5 | 2015-06-19 14:06:15 -0700 2.4-6 | 2015-06-19 16:26:40 -0700
* Generate protocol confirmations for Modbus, making it appear as a * Generate protocol confirmations for Modbus, making it appear as a
confirmed service in conn.log. (Seth Hall) confirmed service in conn.log. (Seth Hall)
* Put command line options in alphabetical order. (Daniel Thayer) * Put command line options in alphabetical order. (Daniel Thayer)
* Remove unused code fo no longer supported -G command line option. * Removing dead code for no longer supported -G switch. (Robin
(Robin Sommer) Sommer) (Robin Sommer)
2.4 | 2015-06-09 07:30:53 -0700 2.4 | 2015-06-09 07:30:53 -0700

View file

@ -1 +1 @@
2.4-5 2.4-6

@ -1 +1 @@
Subproject commit f303cdbc60ad6eef35ebcd1473ee85b3123f5ef1 Subproject commit 441fabed0fba6d47456ba18ccbe8aaed30dbcfd1

@ -1 +1 @@
Subproject commit 80b42ee3e4503783b6720855b28e83ff1658c22b Subproject commit 6a47a3296a7dace03cf1a16f0f630a9d09ed4f3c

View file

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