From 5062f506e0490f4dbefa3f84576210f6981c3a8e Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 02:22:11 +0000 Subject: [PATCH] spelling: accept --- src/Cedar/Listener.c | 2 +- src/See/Packet.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cedar/Listener.c b/src/Cedar/Listener.c index 55dc49db..cd55b0fe 100644 --- a/src/Cedar/Listener.c +++ b/src/Cedar/Listener.c @@ -562,7 +562,7 @@ void ListenerTCPMainLoop(LISTENER *r) goto STOP; } - // Accpet loop + // Accept loop while (true) { // Accept diff --git a/src/See/Packet.h b/src/See/Packet.h index f75ed1d9..4643615f 100644 --- a/src/See/Packet.h +++ b/src/See/Packet.h @@ -287,7 +287,7 @@ typedef struct __CPU_Private_Data ULONG C; ///< Zero-based index of the consumer in the buffer. It indicates the first free byte to be read. ULONG Free; ///< Number of the free bytes in the buffer PUCHAR Buffer; ///< Pointer to the kernel buffer used to capture packets. - ULONG Accepted; ///< Number of packet that current capture instance acepted, from its opening. A packet + ULONG Accepted; ///< Number of packet that current capture instance accepted, from its opening. A packet ///< is accepted if it passes the filter and fits in the buffer. Accepted packets are the ///< ones that reach the application. ///< This number is related to the particular CPU this structure is referring to.