summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2020-05-29 17:00:30 +0900
committerLennart Poettering <lennart@poettering.net>2020-05-29 14:49:18 +0200
commit7c5f97f5e3763896d7303147d328f3315e3b9173 (patch)
treeae8611d3b4924089ceab0fbf552b8bb3b862bf66
parent47373451731bc8d5f670101312583f378595c73f (diff)
downloadsystemd-7c5f97f5e3763896d7303147d328f3315e3b9173.tar.gz
network: clean up doubled white space
-rw-r--r--src/network/netdev/vxlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/netdev/vxlan.c b/src/network/netdev/vxlan.c
index d49f39e0c9..8dfcdb4215 100644
--- a/src/network/netdev/vxlan.c
+++ b/src/network/netdev/vxlan.c
@@ -45,7 +45,7 @@ static int netdev_vxlan_fill_message_create(NetDev *netdev, Link *link, sd_netli
r = sd_netlink_message_append_in6_addr(m, IFLA_VXLAN_GROUP6, &v->group.in6);
if (r < 0)
return log_netdev_error_errno(netdev, r, "Could not append IFLA_VXLAN_GROUP attribute: %m");
- } else if (in_addr_is_null(v->remote_family, &v->remote) == 0) {
+ } else if (in_addr_is_null(v->remote_family, &v->remote) == 0) {
if (v->remote_family == AF_INET)
r = sd_netlink_message_append_in_addr(m, IFLA_VXLAN_GROUP, &v->remote.in);
else