From 082866de264c3201303847e6efc08200cc25213f Mon Sep 17 00:00:00 2001 From: Taekho Nam Date: Sat, 12 Nov 2016 01:57:35 +0900 Subject: [PATCH] fix some typos (#810) --- examples/networking/http_filter/http-parse-complete.c | 2 +- examples/networking/http_filter/http-parse-simple.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/networking/http_filter/http-parse-complete.c b/examples/networking/http_filter/http-parse-complete.c index 3bfc036..8d2507c 100644 --- a/examples/networking/http_filter/http-parse-complete.c +++ b/examples/networking/http_filter/http-parse-complete.c @@ -87,7 +87,7 @@ int http_filter(struct __sk_buff *skb) { goto DROP; } - //load firt 7 byte of payload into p (payload_array) + //load first 7 byte of payload into p (payload_array) //direct access to skb not allowed unsigned long p[7]; int i = 0; diff --git a/examples/networking/http_filter/http-parse-simple.c b/examples/networking/http_filter/http-parse-simple.c index 0896a04..9c165db 100644 --- a/examples/networking/http_filter/http-parse-simple.c +++ b/examples/networking/http_filter/http-parse-simple.c @@ -58,7 +58,7 @@ int http_filter(struct __sk_buff *skb) { goto DROP; } - //load firt 7 byte of payload into p (payload_array) + //load first 7 byte of payload into p (payload_array) //direct access to skb not allowed unsigned long p[7]; int i = 0; @@ -105,4 +105,4 @@ int http_filter(struct __sk_buff *skb) { DROP: return 0; -} \ No newline at end of file +} -- 2.7.4