remove accumulated stray trailing whitespace
authorDenis Vlasenko <vda.linux@googlemail.com>
Tue, 17 Jul 2007 21:42:59 +0000 (21:42 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Tue, 17 Jul 2007 21:42:59 +0000 (21:42 -0000)
editors/vi.c
include/usage.h
libbb/procps.c
miscutils/devfsd.c
miscutils/hdparm.c
networking/pscan.c
networking/udhcp/leases.c
networking/udhcp/socket.c

index fda29acfbf9a527e5023bf64e5001343ac47fc07..fcd139310717f5815f46d51431a6e0c8c4de9ffb 100644 (file)
@@ -426,7 +426,7 @@ static void edit_file(char * fn)
        if (fn != 0) {
                ch = file_insert(fn, text);
                update_ro_status(fn);
-       } 
+       }
        if (ch < 1) {
                char_insert(text, '\n');        // start empty buf with dummy line
        }
@@ -2404,7 +2404,7 @@ static int file_size(const char * fn) // what is the byte size of "fn"
        return cnt;
 }
 
-static int file_insert(char * fn, char * p) 
+static int file_insert(char *fn, char *p)
 {
        int cnt = -1;
        int fd, size;
index bd9cb990875c53457c321c90af338b37412b4fbc..81773bd9522e1f491c93f3cfae26cb3f83a414c5 100644 (file)
@@ -3005,7 +3005,7 @@ USE_FEATURE_RUN_PARTS_FANCY("\n   -l      Prints names of all matching files even when
      "\n       -m      Do NOT initialize the line in raw 8 bits mode" \
      "\n       -L      Enable 3-wire operation" \
      "\n       -F      Disable RTS/CTS flow control" \
+
 #define sleep_trivial_usage \
        USE_FEATURE_FANCY_SLEEP("[") "N" USE_FEATURE_FANCY_SLEEP("]...")
 #define sleep_full_usage \
index 1987e98fd96a6713c9d6c9041dba98400777e087..9817a128889fb93071d3439ba8dadb1463c0cc83 100644 (file)
@@ -5,7 +5,7 @@
  * Copyright 1998 by Albert Cahalan; all rights reserved.
  * Copyright (C) 2002 by Vladimir Oleynik <dzo@simtreas.ru>
  * SELinux support: (c) 2007 by Yuichi Nakamura <ynakam@hitachisoft.jp>
- * 
+ *
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
index 1dfbadf831f2c54064e064a3986638f6dc2c0c28..49eee9be423e308cf69bccc33736bcda21c153ad 100644 (file)
@@ -689,9 +689,9 @@ static void service_name(const struct devfsd_notify_struct *info)
                msg_logger(LOG_ERR, "lost %u events", info->overrun_count);
 
        /*  Discard lookups on "/dev/log" and "/dev/initctl"  */
-       if (info->type == DEVFSD_NOTIFY_LOOKUP 
+       if (info->type == DEVFSD_NOTIFY_LOOKUP
                && ((info->devname[0] == 'l' && info->devname[1] == 'o'
-               && info->devname[2] == 'g' && !info->devname[3]) 
+               && info->devname[2] == 'g' && !info->devname[3])
                || (info->devname[0] == 'i' && info->devname[1] == 'n'
                && info->devname[2] == 'i' && info->devname[3] == 't'
                && info->devname[4] == 'c' && info->devname[5] == 't'
@@ -701,7 +701,7 @@ static void service_name(const struct devfsd_notify_struct *info)
 
        for (entry = first_config; entry != NULL; entry = entry->next) {
                /*  First check if action matches the type, then check if name matches */
-               if (info->type != entry->action.when 
+               if (info->type != entry->action.when
                || regexec(&entry->preg, info->devname, MAX_SUBEXPR, mbuf, 0) != 0)
                        continue;
                for (n = 0;(n < MAX_SUBEXPR) && (mbuf[n].rm_so != -1); ++n)
index 5c7d1f60cf591d4607f203f77e6b6bdb14589eaa..98cc04fd3249110b5250d8c5b50178ae2350780a 100644 (file)
@@ -1831,7 +1831,7 @@ static void process_dev(char *devname)
                } else if (errno == -ENOMSG)
                        printf(" no identification info available\n");
                else if (ENABLE_IOCTL_HEX2STR_ERROR)  /* To be coherent with ioctl_or_warn */
-                       bb_perror_msg("HDIO_GET_IDENTITY"); 
+                       bb_perror_msg("HDIO_GET_IDENTITY");
                else
                        bb_perror_msg("ioctl %#x failed", HDIO_GET_IDENTITY);
        }
index fe146b8bd1ee049e3ae3e177f2f136a167b9c043..9eda16865bc3858d2d51478dbab7e8e19ae2d84e 100644 (file)
@@ -36,7 +36,7 @@ int pscan_main(int argc, char **argv)
        const char *opt_max_port = "1024";      /* -P: default max port */
        const char *opt_min_port = "1";         /* -p: default min port */
        const char *opt_timeout = "5000";       /* -t: default timeout in msec */
-       /* We estimate rtt and wait rtt*4 before concluding that port is 
+       /* We estimate rtt and wait rtt*4 before concluding that port is
         * totally blocked. min rtt of 5 ms may be too low if you are
         * scanning an Internet host behind saturated/traffic shaped link.
         * Rule of thumb: with min_rtt of N msec, scanning 1000 ports
index 997daea6c4e11374a42e46b5dee1f021fd3dc7cf..c0864ed20f898e1fe206dafb7e790e0e37d50e28 100644 (file)
@@ -138,7 +138,7 @@ uint32_t find_address(int check_expired)
 
                        /* no lease or it expired and we are checking for expired leases */
                        if ((!lease || (check_expired && lease_expired(lease)))
-                        && nobody_responds_to_arp(ret) /* it isn't used on the network */ 
+                        && nobody_responds_to_arp(ret) /* it isn't used on the network */
                        ) {
                                return ret;
                        }
index 21a0585452d1d66dee735048560aa80d51a9b34c..648f7623ca852f4add890e4a0721cf7d813c941b 100644 (file)
@@ -53,7 +53,7 @@ int read_interface(const char *interface, int *ifindex, uint32_t *addr, uint8_t
        ifr.ifr_addr.sa_family = AF_INET;
        strncpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name));
        if (addr) {
-               if (ioctl_or_perror(fd, SIOCGIFADDR, &ifr, 
+               if (ioctl_or_perror(fd, SIOCGIFADDR, &ifr,
                        "is interface %s up and configured?", interface)
                ) {
                        close(fd);