1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 18:39:03 +00:00

fix some typos in comments I found while reading Nbase's code

This commit is contained in:
d33tah
2013-06-28 15:37:20 +00:00
parent 851676e407
commit 85e52bf928
3 changed files with 3 additions and 3 deletions

View File

@@ -740,7 +740,7 @@ char *format_bytecount(unsigned long long bytes, char *buf, size_t buflen) {
/* Compare a canonical option name (e.g. "max-scan-delay") with a
user-generated option such as "max_scan_delay" and returns 0 if the
two values are considered equivalant (for example, - and _ are
two values are considered equivalent (for example, - and _ are
considered to be the same), nonzero otherwise. */
int optcmp(const char *a, const char *b) {
while(*a && *b) {