From f6c1ffa9435bea467e706ad2d11acae855bcd3ea Mon Sep 17 00:00:00 2001 From: Calvin Leung Huang Date: Fri, 4 Mar 2016 16:27:30 -0500 Subject: [PATCH] Correct the rtt -wan error message --- command/rtt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/rtt.go b/command/rtt.go index 2e71941b1..88a3ba140 100644 --- a/command/rtt.go +++ b/command/rtt.go @@ -97,7 +97,7 @@ func (c *RTTCommand) Run(args []string) int { parts1 := strings.Split(nodes[0], ".") parts2 := strings.Split(nodes[1], ".") if len(parts1) != 2 || len(parts2) != 2 { - c.Ui.Error("Node names must be specified as . with -wan") + c.Ui.Error("Node names must be specified as . with -wan") return 1 } node1, dc1 := parts1[0], parts1[1]