mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix inconsistency in IP address parsing errors
Signed-off-by: Solomon Hykes <solomon@docker.com>
This commit is contained in:
parent
1d10c55aec
commit
a30fd7a962
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ func NewIpOpt(ref *net.IP, defaultVal string) *IpOpt {
|
|||
func (o *IpOpt) Set(val string) error {
|
||||
ip := net.ParseIP(val)
|
||||
if ip == nil {
|
||||
return fmt.Errorf("incorrect IP format")
|
||||
return fmt.Errorf("%s is not an ip address", val)
|
||||
}
|
||||
(*o.IP) = net.ParseIP(val)
|
||||
return nil
|
||||
|
|
Loading…
Reference in a new issue