mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Fix typo in error message when given bad argument for TCP ACK Ping. "-PB" -> "-PA"
This commit is contained in:
parent
abbaffe21c
commit
cd806922c0
1 changed files with 1 additions and 1 deletions
2
nmap.cc
2
nmap.cc
|
|
@ -974,7 +974,7 @@ int nmap_main(int argc, char *argv[]) {
|
|||
if (isdigit((int) *(optarg+1))) {
|
||||
o.num_ping_ackprobes = numberlist2array(optarg+1, o.ping_ackprobes, sizeof(o.ping_ackprobes), &proberr);
|
||||
if (o.num_ping_ackprobes < 0) {
|
||||
fatal("Bogus argument to -PB: %s", proberr);
|
||||
fatal("Bogus argument to -PA: %s", proberr);
|
||||
}
|
||||
}
|
||||
if (o.num_ping_ackprobes == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue