]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
bridge: Fix error string typo
authorBenjamin Poirier <bpoirier@nvidia.com>
Mon, 14 Feb 2022 01:44:45 +0000 (10:44 +0900)
committerStephen Hemminger <stephen@networkplumber.org>
Wed, 16 Feb 2022 20:16:43 +0000 (12:16 -0800)
Fixes: fab9a18a2e52 ("bridge: request vlans along with link information")
Signed-off-by: Benjamin Poirier <bpoirier@nvidia.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
bridge/link.c

index 205a2fe79c1a8c099c5789cc34d5897858b7932a..b6292984b6b8bdfd0ec250db5f2e6ab0855b24ac 100644 (file)
@@ -543,12 +543,12 @@ static int brlink_show(int argc, char **argv)
                                             (compress_vlans ?
                                              RTEXT_FILTER_BRVLAN_COMPRESSED :
                                              RTEXT_FILTER_BRVLAN)) < 0) {
-                       perror("Cannon send dump request");
+                       perror("Cannot send dump request");
                        exit(1);
                }
        } else {
                if (rtnl_linkdump_req(&rth, PF_BRIDGE) < 0) {
-                       perror("Cannon send dump request");
+                       perror("Cannot send dump request");
                        exit(1);
                }
        }