]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
fix whitespace
authorDaniel Lezcano <dlezcano@fr.ibm.com>
Fri, 28 May 2010 09:49:25 +0000 (11:49 +0200)
committerDaniel Lezcano <dlezcano@fr.ibm.com>
Fri, 28 May 2010 09:49:25 +0000 (11:49 +0200)
Fix whitespace.

Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
src/lxc/conf.c
src/lxc/confile.c

index f4ed89609025810a0fc9050e76e3a1b832c57a61..e003852f89ee057bb50d679c6bcb0845d0a932c6 100644 (file)
@@ -960,7 +960,7 @@ static int setup_ipv6_addr(struct lxc_list *ip, int ifindex)
 
                inet6dev = iterator->elem;
 
-               err = lxc_ipv6_addr_add(ifindex, &inet6dev->addr, 
+               err = lxc_ipv6_addr_add(ifindex, &inet6dev->addr,
                                        &inet6dev->mcast, &inet6dev->acast,
                                        inet6dev->prefix);
                if (err) {
index 993f9704fe87c5e6738c9de412681e182057f567..06f4b2c0bc356b39b4ccc275d37fcbdfd2b3adce 100644 (file)
@@ -414,11 +414,11 @@ static int config_network_ipv4(const char *key, char *value,
        inetdev->prefix = prefix ? atoi(prefix) :
                config_ip_prefix(&inetdev->addr);
 
-       /* if no broadcast address, let compute one from the 
+       /* if no broadcast address, let compute one from the
         * prefix and address
         */
        if (!bcast) {
-               inetdev->bcast.s_addr = 
+               inetdev->bcast.s_addr =
                        htonl(INADDR_BROADCAST << (32 - inetdev->prefix));
                inetdev->bcast.s_addr &= inetdev->addr.s_addr;
        }