1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Fix various typos in comments. Closes #2888

This commit is contained in:
nnposter
2024-08-16 02:40:23 +00:00
parent efa0dc36f2
commit cefa051cfc
5 changed files with 7 additions and 7 deletions

View File

@@ -296,7 +296,7 @@ int get_diffs(u32 *ipid_diffs, int numSamples, const u32 *ipids, int islocalhost
}
/* Indentify the ipid sequence for 32-bit IPID values (IPv6) */
/* Identify the ipid sequence for 32-bit IPID values (IPv6) */
int get_ipid_sequence_32(int numSamples, const u32 *ipids, int islocalhost) {
int ipid_seq = IPID_SEQ_UNKNOWN;
u32 ipid_diffs[32];
@@ -310,7 +310,7 @@ int get_ipid_sequence_32(int numSamples, const u32 *ipids, int islocalhost) {
}
}
/* Indentify the ipid sequence for 16-bit IPID values (IPv4) */
/* Identify the ipid sequence for 16-bit IPID values (IPv4) */
int get_ipid_sequence_16(int numSamples, const u32 *ipids, int islocalhost) {
int i;
int ipid_seq = IPID_SEQ_UNKNOWN;