Commit 38df7ac9 authored by Stephen Hemminger's avatar Stephen Hemminger

bridge: remove trailing whitespace

parent 346f8ca8
...@@ -94,7 +94,7 @@ int print_fdb(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) ...@@ -94,7 +94,7 @@ int print_fdb(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
ll_index_to_type(r->ndm_ifindex), ll_index_to_type(r->ndm_ifindex),
b1, sizeof(b1))); b1, sizeof(b1)));
} }
if (!filter_index && r->ndm_ifindex) if (!filter_index && r->ndm_ifindex)
fprintf(fp, "dev %s ", ll_index_to_name(r->ndm_ifindex)); fprintf(fp, "dev %s ", ll_index_to_name(r->ndm_ifindex));
...@@ -106,7 +106,7 @@ int print_fdb(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg) ...@@ -106,7 +106,7 @@ int print_fdb(const struct sockaddr_nl *who, struct nlmsghdr *n, void *arg)
RTA_DATA(tb[NDA_DST]), RTA_DATA(tb[NDA_DST]),
abuf, sizeof(abuf))); abuf, sizeof(abuf)));
} }
if (show_stats && tb[NDA_CACHEINFO]) { if (show_stats && tb[NDA_CACHEINFO]) {
struct nda_cacheinfo *ci = RTA_DATA(tb[NDA_CACHEINFO]); struct nda_cacheinfo *ci = RTA_DATA(tb[NDA_CACHEINFO]);
int hz = get_user_hz(); int hz = get_user_hz();
...@@ -194,7 +194,7 @@ static int fdb_modify(int cmd, int flags, int argc, char **argv) ...@@ -194,7 +194,7 @@ static int fdb_modify(int cmd, int flags, int argc, char **argv)
req.ndm.ndm_flags |= NTF_SELF; req.ndm.ndm_flags |= NTF_SELF;
} else if (matches(*argv, "master") == 0) { } else if (matches(*argv, "master") == 0) {
req.ndm.ndm_flags |= NTF_MASTER; req.ndm.ndm_flags |= NTF_MASTER;
} else if (matches(*argv, "local") == 0|| } else if (matches(*argv, "local") == 0||
matches(*argv, "permanent") == 0) { matches(*argv, "permanent") == 0) {
req.ndm.ndm_state |= NUD_PERMANENT; req.ndm.ndm_state |= NUD_PERMANENT;
} else if (matches(*argv, "temp") == 0) { } else if (matches(*argv, "temp") == 0) {
......
...@@ -57,7 +57,7 @@ static void print_link_flags(FILE *fp, unsigned flags) ...@@ -57,7 +57,7 @@ static void print_link_flags(FILE *fp, unsigned flags)
} }
static const char *oper_states[] = { static const char *oper_states[] = {
"UNKNOWN", "NOTPRESENT", "DOWN", "LOWERLAYERDOWN", "UNKNOWN", "NOTPRESENT", "DOWN", "LOWERLAYERDOWN",
"TESTING", "DORMANT", "UP" "TESTING", "DORMANT", "UP"
}; };
...@@ -100,17 +100,17 @@ int print_linkinfo(const struct sockaddr_nl *who, ...@@ -100,17 +100,17 @@ int print_linkinfo(const struct sockaddr_nl *who,
fprintf(fp, "%d: %s ", ifi->ifi_index, fprintf(fp, "%d: %s ", ifi->ifi_index,
tb[IFLA_IFNAME] ? (char*)RTA_DATA(tb[IFLA_IFNAME]) : "<nil>"); tb[IFLA_IFNAME] ? (char*)RTA_DATA(tb[IFLA_IFNAME]) : "<nil>");
if (tb[IFLA_OPERSTATE]) if (tb[IFLA_OPERSTATE])
print_operstate(fp, *(__u8 *)RTA_DATA(tb[IFLA_OPERSTATE])); print_operstate(fp, *(__u8 *)RTA_DATA(tb[IFLA_OPERSTATE]));
if (tb[IFLA_LINK]) { if (tb[IFLA_LINK]) {
SPRINT_BUF(b1); SPRINT_BUF(b1);
int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]); int iflink = *(int*)RTA_DATA(tb[IFLA_LINK]);
if (iflink == 0) if (iflink == 0)
fprintf(fp, "@NONE: "); fprintf(fp, "@NONE: ");
else { else {
fprintf(fp, "@%s: ", fprintf(fp, "@%s: ",
if_indextoname(iflink, b1)); if_indextoname(iflink, b1));
} }
} else { } else {
...@@ -123,7 +123,7 @@ int print_linkinfo(const struct sockaddr_nl *who, ...@@ -123,7 +123,7 @@ int print_linkinfo(const struct sockaddr_nl *who,
fprintf(fp, "mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU])); fprintf(fp, "mtu %u ", *(int*)RTA_DATA(tb[IFLA_MTU]));
if (tb[IFLA_MASTER]) { if (tb[IFLA_MASTER]) {
fprintf(fp, "master %s ", fprintf(fp, "master %s ",
if_indextoname(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1)); if_indextoname(*(int*)RTA_DATA(tb[IFLA_MASTER]), b1));
} }
......
...@@ -74,7 +74,7 @@ int accept_msg(const struct sockaddr_nl *who, ...@@ -74,7 +74,7 @@ int accept_msg(const struct sockaddr_nl *who,
default: default:
return 0; return 0;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment