Skip to content

Commit 8de771b

Browse files
Nikolay Aleksandrovgregkh
Nikolay Aleksandrov
authored andcommitted
net: rtnetlink: fix a typo fbd -> fdb
[ Upstream commit 8b73018 ] A simple typo fix in the nl error message (fbd -> fdb). CC: David Ahern <[email protected]> Fixes: 8c6e137 ("rtnetlink: Update rtnl_fdb_dump for strict data checking") Signed-off-by: Nikolay Aleksandrov <[email protected]> Reviewed-by: David Ahern <[email protected]> Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent f10bbdd commit 8de771b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/core/rtnetlink.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3916,7 +3916,7 @@ static int valid_fdb_dump_strict(const struct nlmsghdr *nlh,
39163916
ndm = nlmsg_data(nlh);
39173917
if (ndm->ndm_pad1 || ndm->ndm_pad2 || ndm->ndm_state ||
39183918
ndm->ndm_flags || ndm->ndm_type) {
3919-
NL_SET_ERR_MSG(extack, "Invalid values in header for fbd dump request");
3919+
NL_SET_ERR_MSG(extack, "Invalid values in header for fdb dump request");
39203920
return -EINVAL;
39213921
}
39223922

0 commit comments

Comments
 (0)