control/controlclient: tweak a couple error messages

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
Brad Fitzpatrick 2021-08-18 10:11:38 -07:00
parent b7ae529ecc
commit 6f8c8c771b

View File

@ -1311,10 +1311,10 @@ func tsmpPing(logf logger.Logf, c *http.Client, pr *tailcfg.PingRequest, pinger
return errors.New("invalid PingRequest with no URL")
}
if pr.IP.IsZero() {
return fmt.Errorf("PingRequest with no proper IP got %v", pr.IP)
return errors.New("PingRequest without IP")
}
if !strings.Contains(pr.Types, "TSMP") {
return fmt.Errorf("PingRequest with no TSMP in Types, got : %v", pr.Types)
return fmt.Errorf("PingRequest with no TSMP in Types, got %q", pr.Types)
}
now := time.Now()