From 1ac6c7c85eae50e88f7c3b6fee28fbb281fb4286 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 02:24:29 +0000 Subject: [PATCH] spelling: address --- src/Mayaqua/Network.h | 2 +- src/SeeDll/AdInfo.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Mayaqua/Network.h b/src/Mayaqua/Network.h index ccec80b1..dd2d9114 100644 --- a/src/Mayaqua/Network.h +++ b/src/Mayaqua/Network.h @@ -893,7 +893,7 @@ struct RUDP_STACK volatile UINT *NatTGlobalUdpPort; // NAT-T global UDP port UCHAR RandPortId; // Random UDP port ID bool NatT_EnableSourceIpValidation; // Enable the source IP address validation mechanism - LIST *NatT_SourceIpList; // Authenticated source IP adddress list + LIST *NatT_SourceIpList; // Authenticated source IP address list // For Client bool TargetIpAndPortInited; // The target IP address and the port number are initialized diff --git a/src/SeeDll/AdInfo.c b/src/SeeDll/AdInfo.c index c0dbbc7e..cefeadec 100644 --- a/src/SeeDll/AdInfo.c +++ b/src/SeeDll/AdInfo.c @@ -181,7 +181,7 @@ BOOLEAN PacketGetAddressesFromRegistry(LPTSTR AdapterName, npf_if_addr* buffer, else { - // Query the registry key with the interface's adresses + // Query the registry key with the interface's addresses status = RegOpenKeyEx(HKEY_LOCAL_MACHINE,TEXT("SYSTEM\\CurrentControlSet\\Services"),0,KEY_READ,&SystemKey); if (status != ERROR_SUCCESS) goto fail; @@ -222,7 +222,7 @@ BOOLEAN PacketGetAddressesFromRegistry(LPTSTR AdapterName, npf_if_addr* buffer, DHCPEnabled=0; - /* Retrieve the adrresses */ + /* Retrieve the addresses */ if(DHCPEnabled){ BufLen = sizeof String; @@ -284,7 +284,7 @@ BOOLEAN PacketGetAddressesFromRegistry(LPTSTR AdapterName, npf_if_addr* buffer, else break; } - // The number of masks MUST be equal to the number of adresses + // The number of masks MUST be equal to the number of addresses if(nmasks != naddrs){ RegCloseKey(TcpIpKey); RegCloseKey(UnderTcpKey); @@ -353,7 +353,7 @@ BOOLEAN PacketGetAddressesFromRegistry(LPTSTR AdapterName, npf_if_addr* buffer, else break; } - // The number of masks MUST be equal to the number of adresses + // The number of masks MUST be equal to the number of addresses if(nmasks != naddrs){ RegCloseKey(TcpIpKey); RegCloseKey(UnderTcpKey); @@ -432,7 +432,7 @@ BOOLEAN PacketAddIP6Addresses(PADAPTER_INFO AdInfo) ODS("PacketAddIP6Addresses, retrieved addresses\n"); // - // Scan the list of adddresses obtained from the IP helper API + // Scan the list of addresses obtained from the IP helper API // for(TmpAddr = AdBuffer; TmpAddr != NULL; TmpAddr = TmpAddr->Next) {