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

Remove various "the the" repeats. Closes #2804

This commit is contained in:
nnposter
2024-03-16 01:16:34 +00:00
parent 00863472d6
commit 96dcf4e9ed
12 changed files with 12 additions and 12 deletions

View File

@@ -117,7 +117,7 @@ static u8 nrand_getbyte(nrand_h *r) {
si = r->s[r->i];
r->j = (r->j + si);
sj = r->s[r->j];
r->s[r->i] = sj; /* The start of the the swap */
r->s[r->i] = sj; /* The start of the swap */
r->s[r->j] = si; /* The other half of the swap */
return (r->s[(si + sj) & 0xff]);
}