]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: clean up doubled white space
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 29 May 2020 08:00:30 +0000 (17:00 +0900)
committerLennart Poettering <lennart@poettering.net>
Fri, 29 May 2020 12:49:18 +0000 (14:49 +0200)
src/network/netdev/vxlan.c

index d49f39e0c9c9c110a4cb893efc9cb7f85eab3898..8dfcdb4215204b18c03db808fab53d03fa7eaaba 100644 (file)
@@ -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