bridge: Fix typo in error messages

Fixes: 9eff0e5cc4 ("bridge: Add vlan configuration support")
Fixes: 7abf5de677 ("bridge: vlan: add support to display per-vlan statistics")
Signed-off-by: Benjamin Poirier <bpoirier@cumulusnetworks.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Benjamin Poirier 2019-12-16 15:43:39 +09:00 committed by Stephen Hemminger
parent d88a6a98e8
commit 43b0b6ec84
1 changed files with 3 additions and 3 deletions

View File

@ -576,7 +576,7 @@ static int vlan_show(int argc, char **argv)
(compress_vlans ? (compress_vlans ?
RTEXT_FILTER_BRVLAN_COMPRESSED : RTEXT_FILTER_BRVLAN_COMPRESSED :
RTEXT_FILTER_BRVLAN)) < 0) { RTEXT_FILTER_BRVLAN)) < 0) {
perror("Cannont send dump request"); perror("Cannot send dump request");
exit(1); exit(1);
} }
@ -601,7 +601,7 @@ static int vlan_show(int argc, char **argv)
filt_mask = IFLA_STATS_FILTER_BIT(IFLA_STATS_LINK_XSTATS); filt_mask = IFLA_STATS_FILTER_BIT(IFLA_STATS_LINK_XSTATS);
if (rtnl_statsdump_req_filter(&rth, AF_UNSPEC, filt_mask) < 0) { if (rtnl_statsdump_req_filter(&rth, AF_UNSPEC, filt_mask) < 0) {
perror("Cannont send dump request"); perror("Cannot send dump request");
exit(1); exit(1);
} }
@ -615,7 +615,7 @@ static int vlan_show(int argc, char **argv)
filt_mask = IFLA_STATS_FILTER_BIT(IFLA_STATS_LINK_XSTATS_SLAVE); filt_mask = IFLA_STATS_FILTER_BIT(IFLA_STATS_LINK_XSTATS_SLAVE);
if (rtnl_statsdump_req_filter(&rth, AF_UNSPEC, filt_mask) < 0) { if (rtnl_statsdump_req_filter(&rth, AF_UNSPEC, filt_mask) < 0) {
perror("Cannont send slave dump request"); perror("Cannot send slave dump request");
exit(1); exit(1);
} }