From f88c024b2fb6cd840e83313919af71bdb86ca386 Mon Sep 17 00:00:00 2001 From: Alex Collins Date: Tue, 24 Oct 2017 22:31:45 +0100 Subject: [PATCH] Fix minor typo in comment. (#261) --- src/ethernetII.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ethernetII.cpp b/src/ethernetII.cpp index 61f9686..047e92c 100644 --- a/src/ethernetII.cpp +++ b/src/ethernetII.cpp @@ -158,7 +158,7 @@ void EthernetII::write_serialization(uint8_t* buffer, uint32_t total_sz) { if (inner_pdu()) { Constants::Ethernet::e flag; const PDUType type = inner_pdu()->pdu_type(); - // Dirty trick to sucessfully tag PPPoE session/discovery packets + // Dirty trick to successfully tag PPPoE session/discovery packets if (type == PDU::PPPOE) { const PPPoE* pppoe = static_cast(inner_pdu()); flag = (pppoe->code() == 0) ? Constants::Ethernet::PPPOES