diff --git a/nmap.cc b/nmap.cc index 2895109f5..ad7b53475 100644 --- a/nmap.cc +++ b/nmap.cc @@ -1385,7 +1385,7 @@ int nmap_main(int argc, char *argv[]) { printf("--------------- Timing report ---------------\n"); printf(" hostgroups: min %d, max %d\n", o.minHostGroupSz(), o.maxHostGroupSz()); printf(" rtt-timeouts: init %d, min %d, max %d\n", o.initialRttTimeout(), o.minRttTimeout(), o.maxRttTimeout()); - printf(" msx-scan-delay: TCP %d, UDP %d\n", o.maxTCPScanDelay(), o.maxUDPScanDelay()); + printf(" max-scan-delay: TCP %d, UDP %d\n", o.maxTCPScanDelay(), o.maxUDPScanDelay()); printf(" parallelism: min %d, max %d\n", o.min_parallelism, o.max_parallelism); printf(" max-retries: %d, host-timeout: %ld\n", o.getMaxRetransmissions(), o.host_timeout); printf("---------------------------------------------\n"); diff --git a/portlist.h b/portlist.h index 52871c2a8..2e3e66a53 100644 --- a/portlist.h +++ b/portlist.h @@ -332,7 +332,7 @@ class PortList { int state_counts_proto[PORTLIST_PROTO_MAX][PORT_HIGHEST_STATE]; Port **port_list[PORTLIST_PROTO_MAX]; protected: - /* Mapps port_number to index in port_list array. + /* Maps port_number to index in port_list array. * Only functions: getPortEntry, setPortEntry, initializePortMap and * nextPort should access this structure directly. */ static u16 *port_map[PORTLIST_PROTO_MAX];