]> git.proxmox.com Git - mirror_iproute2.git/commit
fix get_addr() and get_prefix() error messages
authorMarco Varlese <marco.varlese@intel.com>
Sun, 27 Mar 2016 17:45:51 +0000 (10:45 -0700)
committerStephen Hemminger <stephen@networkplumber.org>
Sun, 27 Mar 2016 17:47:02 +0000 (10:47 -0700)
commit334af761433685d90790545eb705bfe03ae9d43d
treeee23825899ac0f653d328d692242de8261110bbd
parentf63ed3e629893046aca58a3bb409a3ff909a8fae
fix get_addr() and get_prefix() error messages

An attempt to add invalid address to interface would print "???" string
instead of the address family name.

For example:
$ ip address add 256.10.166.1/24 dev ens8
Error: ??? prefix is expected rather than "256.10.166.1/24".

$ ip neighbor add proxy 2001:db8::g dev ens8
Error: ??? address is expected rather than "2001:db8::g".

With this patch the output will look like:
$ ip address add 256.10.166.1/24 dev ens8
Error: inet prefix is expected rather than "256.10.166.1/24".

$ ip neighbor add proxy 2001:db8::g dev ens8
Error: inet6 address is expected rather than "2001:db8::g".

Signed-off-by: Przemyslaw Szczerbik <przemyslawx.szczerbik@intel.com>
Signed-off-by: Marco Varlese <marco.varlese@intel.com>
lib/utils.c