Remove trailing whitespace. Update copyright to include 2004.
[platform/upstream/busybox.git] / networking / libiproute / ipaddress.c
index 44e871e..7e0c757 100644 (file)
@@ -91,7 +91,7 @@ static void print_queuelen(char *name)
 
        memset(&ifr, 0, sizeof(ifr));
        strcpy(ifr.ifr_name, name);
-       if (ioctl(s, SIOCGIFTXQLEN, &ifr) < 0) { 
+       if (ioctl(s, SIOCGIFTXQLEN, &ifr) < 0) {
                perror("SIOCGIFXQLEN");
                close(s);
                return;
@@ -166,7 +166,7 @@ static int print_linkinfo(struct sockaddr_nl *who, struct nlmsghdr *n, void *arg
 #endif
        if (filter.showqueue)
                print_queuelen((char*)RTA_DATA(tb[IFLA_IFNAME]));
-       
+
        if (!filter.family || filter.family == AF_PACKET) {
                SPRINT_BUF(b1);
                fprintf(fp, "%s", _SL_);
@@ -378,7 +378,7 @@ static int print_selected_addrinfo(int ifindex, struct nlmsg_list *ainfo, FILE *
                if (n->nlmsg_len < NLMSG_LENGTH(sizeof(ifa)))
                        return -1;
 
-               if (ifa->ifa_index != ifindex || 
+               if (ifa->ifa_index != ifindex ||
                    (filter.family && filter.family != ifa->ifa_family))
                        continue;
 
@@ -564,7 +564,7 @@ extern int ipaddr_list_or_flush(int argc, char **argv, int flush)
                                struct nlmsghdr *n = &a->h;
                                struct ifaddrmsg *ifa = NLMSG_DATA(n);
 
-                               if (ifa->ifa_index != ifi->ifi_index || 
+                               if (ifa->ifa_index != ifi->ifi_index ||
                                    (filter.family && filter.family != ifa->ifa_family))
                                        continue;
                                if ((filter.scope^ifa->ifa_scope)&filter.scopemask)