diff options
author | Maxime Jayat <maxime@artisandeveloppeur.fr> | 2013-10-12 01:29:46 +0200 |
---|---|---|
committer | Chanho Park <chanho61.park@samsung.com> | 2014-11-18 11:51:58 +0900 |
commit | be94a292b3ae21b7e08e7e611221d5bf0e40d095 (patch) | |
tree | 41b41a80aa59b30e83729130683f320502b854a3 /net | |
parent | 89e38c4d03a555b7ea3c852679e66cb040074702 (diff) | |
download | linux-3.10-be94a292b3ae21b7e08e7e611221d5bf0e40d095.tar.gz linux-3.10-be94a292b3ae21b7e08e7e611221d5bf0e40d095.tar.bz2 linux-3.10-be94a292b3ae21b7e08e7e611221d5bf0e40d095.zip |
upstream: treewide: Fix common typo in "identify"
Correct common misspelling of "identify" as "indentify" throughout
the kernel
Signed-off-by: Maxime Jayat <maxime@artisandeveloppeur.fr>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'net')
-rw-r--r-- | net/can/af_can.c | 2 | ||||
-rw-r--r-- | net/netfilter/xt_set.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/net/can/af_can.c b/net/can/af_can.c index f59859a3f56..657dc272fd8 100644 --- a/net/can/af_can.c +++ b/net/can/af_can.c @@ -421,7 +421,7 @@ static struct hlist_head *find_rcv_list(canid_t *can_id, canid_t *mask, * @mask: CAN mask (see description) * @func: callback function on filter match * @data: returned parameter for callback function - * @ident: string for calling module indentification + * @ident: string for calling module identification * * Description: * Invokes the callback function with the received sk_buff and the given diff --git a/net/netfilter/xt_set.c b/net/netfilter/xt_set.c index 31790e789e2..4b9d6b4f1eb 100644 --- a/net/netfilter/xt_set.c +++ b/net/netfilter/xt_set.c @@ -84,7 +84,7 @@ set_match_v0_checkentry(const struct xt_mtchk_param *par) index = ip_set_nfnl_get_byindex(info->match_set.index); if (index == IPSET_INVALID_ID) { - pr_warning("Cannot find set indentified by id %u to match\n", + pr_warning("Cannot find set identified by id %u to match\n", info->match_set.index); return -ENOENT; } @@ -205,7 +205,7 @@ set_match_v1_checkentry(const struct xt_mtchk_param *par) index = ip_set_nfnl_get_byindex(info->match_set.index); if (index == IPSET_INVALID_ID) { - pr_warning("Cannot find set indentified by id %u to match\n", + pr_warning("Cannot find set identified by id %u to match\n", info->match_set.index); return -ENOENT; } |