Fixed inability to enumerate any devices while in host mode (broken in a previous...
[pub/USBasp.git] / Demos / Device / RNDISEthernet / ProtocolDecoders.c
index f0e6ebb..add0333 100644 (file)
@@ -29,7 +29,7 @@
 */\r
 \r
 /* Protocol decoders for Ethernet, TCP, IP, ICMP and ARP. Each of these routines\r
-   accepts a header to the appropriate protocol and prints out pertient information\r
+   accepts a header to the appropriate protocol and prints out pertinent information\r
    on the packet through the serial port.\r
    \r
    To disable printing of a specific protocol, define the token NO_DECODE_{Protocol}\r
@@ -39,7 +39,7 @@
 /** \file\r
  *\r
  *  Protocol decoding routines, for the plain-text decoding of Ethernet frames for debugging purposes.\r
- *  Enabled protocol decoders will print incomming Ethernet frame contents through the USART in a human\r
+ *  Enabled protocol decoders will print incoming Ethernet frame contents through the USART in a human\r
  *  readable format.\r
  *\r
  *  Note that the USART is a slow transmission medium, and will slow down packet processing considerably.\r
@@ -273,7 +273,7 @@ void DecodeDHCPHeader(void* InDataStart)
                        }\r
                }\r
                \r
-               DHCPOptionsINStart += ((DHCPOptionsINStart[0] == DHCP_OPTION_PAD) ? 1 : (DHCPOptionsINStart[1] + 2));\r
+               DHCPOptions += ((DHCPOptions[0] == DHCP_OPTION_PAD) ? 1 : (DHCPOptions[1] + 2));\r
        }\r
 \r
        #endif\r