Fix -oneline output when alias present
This patch removes '\n' in -oneline output when alias present on interface Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
This commit is contained in:
parent
f480917486
commit
263c894fd1
|
|
@ -468,9 +468,11 @@ int print_linkinfo(const struct sockaddr_nl *who,
|
||||||
if (do_link && tb[IFLA_LINKINFO] && show_details)
|
if (do_link && tb[IFLA_LINKINFO] && show_details)
|
||||||
print_linktype(fp, tb[IFLA_LINKINFO]);
|
print_linktype(fp, tb[IFLA_LINKINFO]);
|
||||||
|
|
||||||
if (do_link && tb[IFLA_IFALIAS])
|
if (do_link && tb[IFLA_IFALIAS]) {
|
||||||
fprintf(fp,"\n alias %s",
|
fprintf(fp, "%s", _SL_);
|
||||||
|
fprintf(fp," alias %s",
|
||||||
rta_getattr_str(tb[IFLA_IFALIAS]));
|
rta_getattr_str(tb[IFLA_IFALIAS]));
|
||||||
|
}
|
||||||
|
|
||||||
if (do_link && show_stats) {
|
if (do_link && show_stats) {
|
||||||
if (tb[IFLA_STATS64])
|
if (tb[IFLA_STATS64])
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue