Skip to content

Commit

Permalink
fix some typos (iovisor#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
Taekho Nam authored and 4ast committed Nov 11, 2016
1 parent 87d27cf commit 082866d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/networking/http_filter/http-parse-complete.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions examples/networking/http_filter/http-parse-simple.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -105,4 +105,4 @@ int http_filter(struct __sk_buff *skb) {
DROP:
return 0;

}
}

0 comments on commit 082866d

Please sign in to comment.