diff options
author | Kartik Mistry <kartik@debian.org> | 2013-05-30 11:30:37 +0530 |
---|---|---|
committer | Daniel Borkmann <dborkman@redhat.com> | 2013-05-30 09:56:32 +0200 |
commit | 7bac55be33621dc5a382c8bd518d8120098c6cde (patch) | |
tree | dc24c88cd421cdbe37e9bcec9ae6ad118ff0e8d3 /proto_80211_mac_hdr.c | |
parent | a6b5b87704b29762287fadd130a1981a0300c7ed (diff) |
misc: Fixed spelling mistakes
Fix for spelling mistakes detected by Lintian.
Signed-off-by: Kartik Mistry <kartik@debian.org>
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'proto_80211_mac_hdr.c')
-rw-r--r-- | proto_80211_mac_hdr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proto_80211_mac_hdr.c b/proto_80211_mac_hdr.c index a496a1e..cc5c26e 100644 --- a/proto_80211_mac_hdr.c +++ b/proto_80211_mac_hdr.c @@ -3498,7 +3498,7 @@ static const char *ctrl_sub(u8 subtype, struct pkt_buff *pkt, *get_content = NULL; return "Reserved"; default: - return "Control SubType unkown"; + return "Control SubType unknown"; } } @@ -3535,7 +3535,7 @@ static const char *data_sub(u8 subtype, struct pkt_buff *pkt, return "Reserved"; default: *get_content = NULL; - return "Data SubType unkown"; + return "Data SubType unknown"; } } @@ -3558,7 +3558,7 @@ frame_control_type(u8 type, const char *(**get_subtype)(u8 subtype, return "Reserved"; default: *get_subtype = NULL; - return "Control Type unkown"; + return "Control Type unknown"; } } |