Fix some typos
(cherry picked from commit b780f21e6243e80eb95ebfb94c4fd6ea9e79a3b3)
diff --git a/CHANGES b/CHANGES
index d2109c7..9f1cbb3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -874,7 +874,7 @@
including improved 64bit support
Many new testcases
Support for sending packets
- Many compliation fixes on most platforms
+ Many compilation fixes on most platforms
Fixes for recent version of GCC to eliminate warnings
Improved Unicode support
diff --git a/doc/README.Win32.md b/doc/README.Win32.md
index c9fa436..b7e81d1 100644
--- a/doc/README.Win32.md
+++ b/doc/README.Win32.md
@@ -95,7 +95,7 @@
For Visual Studio 2017, make sure "Visual C++ tools for CMake" is
installed; for Visual Studio 2019, make sure "C++ CMake tools for
-Windows" is intalled.
+Windows" is installed.
Git
---
diff --git a/print-802_15_4.c b/print-802_15_4.c
index a9d43d9..1895be7 100644
--- a/print-802_15_4.c
+++ b/print-802_15_4.c
@@ -420,7 +420,7 @@
/*
* IEEE 802.15.4 CRC 16 function. This is using CCITT polynomical of 0x1021,
* but the initial value is 0, and the bits are reversed for both in and out.
- * See secton 7.2.10 of 802.15.4-2015 for more information.
+ * See section 7.2.10 of 802.15.4-2015 for more information.
*/
static uint16_t
ieee802_15_4_crc16(netdissect_options *ndo, const u_char *p,
@@ -472,7 +472,7 @@
/*
* IEEE 802.15.4 CRC 32 function. This is using ANSI X3.66-1979 polynomical of
* 0x04C11DB7, but the initial value is 0, and the bits are reversed for both
- * in and out. See secton 7.2.10 of 802.15.4-2015 for more information.
+ * in and out. See section 7.2.10 of 802.15.4-2015 for more information.
*/
static uint32_t
ieee802_15_4_crc32(netdissect_options *ndo, const u_char *p,
@@ -891,7 +891,7 @@
ND_PRINT("Ack time correction = %d, ", timecorr);
}
break;
- case 0x22: /* Frament Sequence Content Description IE */
+ case 0x22: /* Fragment Sequence Content Description IE */
/* XXX Not implemented */
case 0x23: /* Simplified Superframe Specification IE */
/* XXX Not implemented */
diff --git a/print-bgp.c b/print-bgp.c
index bfe52ef..e13fdd9 100644
--- a/print-bgp.c
+++ b/print-bgp.c
@@ -949,7 +949,7 @@
/*
* get the ext-comm type
* Note: pptr references a static 8 octet buffer with unused bits set to 0,
- * hense EXTRACT_*() macros are safe.
+ * hence EXTRACT_*() macros are safe.
*/
ec_type = EXTRACT_BE_U_2(pptr);
switch (ec_type) {
diff --git a/slcompress.h b/slcompress.h
index 22d51f9..ddf131e 100644
--- a/slcompress.h
+++ b/slcompress.h
@@ -35,7 +35,7 @@
*
* There are 5 numbers which can change (they are always inserted
* in the following order): TCP urgent pointer, window,
- * acknowlegement, sequence number and IP ID. (The urgent pointer
+ * acknowledgement, sequence number and IP ID. (The urgent pointer
* is different from the others in that its value is sent, not the
* change in value.) Since typical use of SLIP links is biased
* toward small packets (see comments on MTU/MSS below), changes