*: whitespace fixes, no code changes
authorDenis Vlasenko <vda.linux@googlemail.com>
Mon, 24 Mar 2008 02:18:03 +0000 (02:18 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Mon, 24 Mar 2008 02:18:03 +0000 (02:18 -0000)
13 files changed:
editors/patch.c
editors/vi.c
init/init.c
libbb/login.c
libbb/safe_gethostname.c
networking/ifenslave.c
networking/inetd.c
networking/sendmail.c
printutils/lpd.c
scripts/Makefile.host
shell/msh.c
util-linux/volume_id/fat.c
util-linux/volume_id/unused_ufs.c

index a2d593d870cc037d7b106a1e0f104fbc589562d0..e0fb58f87dfddaf6a0d4a331666ed299b80eee94 100644 (file)
@@ -74,7 +74,7 @@ int patch_main(int argc ATTRIBUTE_UNUSED, char **argv)
        int patch_level;
        int ret = 0;
 
-       xfunc_error_retval = 2; 
+       xfunc_error_retval = 2;
        {
                const char *p = "-1";
                const char *i = "-"; /* compat */
@@ -114,7 +114,7 @@ int patch_main(int argc ATTRIBUTE_UNUSED, char **argv)
                if (!patch_line || strncmp(patch_line, "+++ ", 4) != 0)
                        bb_error_msg_and_die("invalid patch");
                new_filename = extract_filename_and_free_line(patch_line, patch_level);
-               
+
                /* Get access rights from the file to be patched, -1 file does not exist */
                if (stat(new_filename, &saved_stat) != 0) {
                        char *line_ptr;
index 65fb0265e2dab6b0d6a2d83b05f4ebfea2c9da0a..454cfcee47ea4ceee0f3fda1fcb23053b15fba77 100644 (file)
@@ -419,7 +419,7 @@ int vi_main(int argc, char **argv)
                        /* fall through */
 
                default:
-                       bb_show_usage();
+                       bb_show_usage();
                        return 1;
                }
        }
index c4674a55f82f88256a145af3a7ba12d68d940008..61b302556f0f109e642981891145f92d0b42464e 100644 (file)
@@ -230,8 +230,8 @@ static void console_init(void)
                        /* Give me _ANY_ open descriptor! */
                        fd = xopen("/", O_RDONLY); /* we don't believe this can fail */
                }
-               while ((unsigned)fd < 2)
-                       fd = dup(fd);
+               while ((unsigned)fd < 2)
+                       fd = dup(fd);
                if (fd > 2)
                        close(fd);
        }
index a711a5437e86d1fac36566c800cd7c833b294187..a5be2c8c9f7dd5c6a3a71188c9f96063c704a6af 100644 (file)
@@ -89,7 +89,7 @@ void print_login_issue(const char *issue_file, const char *tty)
 void print_login_prompt(void)
 {
        char *hostname = safe_gethostname();
-       
+
        fputs(hostname, stdout);
        fputs(LOGIN, stdout);
        fflush(stdout);
index 1290f4ca719fc7016f433705e0ad880de8f15739..3b24edba574b9e78cbbcc72d17287cde5c7df2f2 100644 (file)
@@ -45,7 +45,7 @@ char *safe_gethostname(void)
         * name and an 8-byte nodename), but this is true on Linux. The same holds
         * for setdomainname(2) and the domainname field.
         */
-       
+
        /* Uname can fail only if you pass a bad pointer to it. */
        uname(&uts);
 
index 1e3d5bb959692266a392c8770876ffee33e700dd..875e835e7ee0047ccdd0c2e499f61f118e89d9de 100644 (file)
@@ -5,19 +5,19 @@
  *
  * ifenslave.c: Configure network interfaces for parallel routing.
  *
- *     This program controls the Linux implementation of running multiple
- *     network interfaces in parallel.
+ *      This program controls the Linux implementation of running multiple
+ *      network interfaces in parallel.
  *
- * Author:     Donald Becker <becker@cesdis.gsfc.nasa.gov>
- *             Copyright 1994-1996 Donald Becker
+ * Author:      Donald Becker <becker@cesdis.gsfc.nasa.gov>
+ *              Copyright 1994-1996 Donald Becker
  *
- *             This program is free software; you can redistribute it
- *             and/or modify it under the terms of the GNU General Public
- *             License as published by the Free Software Foundation.
+ *              This program is free software; you can redistribute it
+ *              and/or modify it under the terms of the GNU General Public
+ *              License as published by the Free Software Foundation.
  *
- *     The author may be reached as becker@CESDIS.gsfc.nasa.gov, or C/O
- *     Center of Excellence in Space Data and Information Sciences
- *        Code 930.5, Goddard Space Flight Center, Greenbelt MD 20771
+ *      The author may be reached as becker@CESDIS.gsfc.nasa.gov, or C/O
+ *      Center of Excellence in Space Data and Information Sciences
+ *         Code 930.5, Goddard Space Flight Center, Greenbelt MD 20771
  *
  *  Changes :
  *    - 2000/10/02 Willy Tarreau <willy at meta-x.org> :
  *         current version is 1.0.0 as a base line.
  *
  *    - 2003/05/22 - Jay Vosburgh <fubar at us dot ibm dot com>
- *      - ifenslave -c was broken; it's now fixed
- *      - Fixed problem with routes vanishing from master during enslave
- *        processing.
+ *       - ifenslave -c was broken; it's now fixed
+ *       - Fixed problem with routes vanishing from master during enslave
+ *         processing.
  *
  *    - 2003/05/27 - Amir Noam <amir.noam at intel dot com>
- *      - Fix backward compatibility issues:
- *        For drivers not using ABI versions, slave was set down while
- *        it should be left up before enslaving.
- *        Also, master was not set down and the default set_mac_address()
- *        would fail and generate an error message in the system log.
- *      - For opt_c: slave should not be set to the master's setting
- *        while it is running. It was already set during enslave. To
- *        simplify things, it is now handeled separately.
+ *       - Fix backward compatibility issues:
+ *         For drivers not using ABI versions, slave was set down while
+ *         it should be left up before enslaving.
+ *         Also, master was not set down and the default set_mac_address()
+ *         would fail and generate an error message in the system log.
+ *       - For opt_c: slave should not be set to the master's setting
+ *         while it is running. It was already set during enslave. To
+ *         simplify things, it is now handeled separately.
  *
  *    - 2003/12/01 - Shmulik Hen <shmulik.hen at intel dot com>
- *      - Code cleanup and style changes
- *        set version to 1.1.0
+ *       - Code cleanup and style changes
+ *         set version to 1.1.0
  */
 
 #include "libbb.h"
index 5cdfe0a22645eb857159672bdd7410edc3394b31..eb19d16303ceb011034436bea3d765da7096e0c7 100644 (file)
@@ -366,7 +366,7 @@ static len_and_sockaddr *xzalloc_lsa(int family)
        lsa = xzalloc(LSA_LEN_SIZE + sz);
        lsa->len = sz;
        lsa->u.sa.sa_family = family;
-       return lsa;     
+       return lsa;
 }
 
 static void rearm_alarm(void)
@@ -1357,7 +1357,7 @@ int inetd_main(int argc ATTRIBUTE_UNUSED, char **argv)
                                /* peek at the packet and remember peer addr */
                                int r = recvfrom(ctrl, NULL, 0, MSG_PEEK|MSG_DONTWAIT,
                                        &lsa->u.sa, &lsa->len);
-                               if (r < 0)
+                               if (r < 0)
                                        goto do_exit1;
                                /* make this socket "connected" to peer addr:
                                 * only packets from this peer will be recv'ed,
index 2218f2c19527c52dc629c2e0106b8d23cbd05f7b..378c4bb2edeac47acdf1da49b247143f521c0d3a 100644 (file)
@@ -408,7 +408,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv)
 
                // make a random string -- it will delimit message parts
                srand(monotonic_us());
-               boundary = xasprintf("%d-%d-%d", rand(), rand(), rand());
+               boundary = xasprintf("%d-%d-%d", rand(), rand(), rand());
 
                // put common headers and body start
                printf(
@@ -457,7 +457,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv)
                printf("\r\n--%s--\r\n" "\r\n", boundary);
 
                // leave "put message" mode
-               smtp_check(".", 250);
+               smtp_check(".", 250);
                // ... and say goodbye
                smtp_check("QUIT", 221);
 
@@ -482,7 +482,7 @@ int sendgetmail_main(int argc ATTRIBUTE_UNUSED, char **argv)
 
                // cache postprocess program
                *fargs = *argv;
-               
+
                // authenticate
                if (!(opts & OPT_U)) {
                        //opts |= OPT_U;
index bc0348eba0875d0edb8404ff95ad37e700f62936..4008e43963375b73c3a194ec195dfe404bc8458f 100644 (file)
  * and should have the following structure:
  *
  * SPOOLDIR/
- *     <queue1>
- *     ...
- *     <queueN>
+ *      <queue1>
+ *      ...
+ *      <queueN>
  *
  * <queueX> can be of two types:
- *     A. a printer character device or an ordinary file a link to such;
- *     B. a directory.
+ *      A. a printer character device or an ordinary file a link to such;
+ *      B. a directory.
  *
  * In case A lpd just dumps the data it receives from client (lpr) to the
  * end of queue file/device. This is non-spooling mode.
  * lpd only sanitizes them (by removing most non-alphanumerics).
  *
  * If HELPER-PROG (with optional arguments) is specified then lpd continues to process client data:
- *     1. it reads and parses control file (cfA...). The parse process results in setting environment
- *     variables whose values were passed in control file; when parsing is complete, lpd deletes
- *     control file.
- *     2. it spawns specified helper application. It is then the helper application who is responsible
- *     for both actual printing and deleting processed data file.
+ *      1. it reads and parses control file (cfA...). The parse process results in setting environment
+ *      variables whose values were passed in control file; when parsing is complete, lpd deletes
+ *      control file.
+ *      2. it spawns specified helper application. It is then the helper application who is responsible
+ *      for both actual printing and deleting processed data file.
  *
  * A good lpr passes control files which when parsed provide the following variables:
  * $H = host which issues the job
index 763e2f2d7e615248862d4b4b0e6ead6d1846d84e..23bd9ff1070424508a728cf49424db430d4b320b 100644 (file)
@@ -99,7 +99,7 @@ hostcxx_flags  = -Wp,-MD,$(depfile) $(__hostcxx_flags)
 # host-csingle -> Executable
 quiet_cmd_host-csingle         = HOSTCC  $@
       cmd_host-csingle = $(HOSTCC) $(hostc_flags) -o $@ $< \
-               $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
+                         $(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
 $(host-csingle): %: %.c FORCE
        $(call if_changed_dep,host-csingle)
 
index cd4695454c50fe3b995d9e2879c6b0b8a3d9d812..fd4a54117d23904f5e2df4207e626e4607063c91 100644 (file)
@@ -159,7 +159,7 @@ static int mshdbg_rc = 0;
 /*
  * library and system definitions
  */
-typedef void xint;                             /* base type of jmp_buf, for not broken compilers */
+typedef void xint;                      /* base type of jmp_buf, for not broken compilers */
 
 /*
  * shell components
index 779971cc9ee04558679dc83e162201f9371d24fe..9ab1cef02114d3eb95a68efd1c252fa46bcda16d 100644 (file)
@@ -181,7 +181,7 @@ int volume_id_probe_vfat(struct volume_id *id, uint64_t off)
        if (vs->heads == 0)
                return -1;
 
-       /* cluster size check*/ 
+       /* cluster size check */
        if (vs->sectors_per_cluster == 0 ||
            (vs->sectors_per_cluster & (vs->sectors_per_cluster-1)))
                return -1;
index ba76876b50b87fcffcfe7a954d3be3a016a4b557..c666b86b8a468eff7ed6758035719cf0ffb3e532 100644 (file)
@@ -32,13 +32,13 @@ struct ufs_super_block {
        uint32_t        fs_time;
        uint32_t        fs_size;
        uint32_t        fs_dsize;
-       uint32_t        fs_ncg; 
+       uint32_t        fs_ncg;
        uint32_t        fs_bsize;
        uint32_t        fs_fsize;
        uint32_t        fs_frag;
        uint32_t        fs_minfree;
        uint32_t        fs_rotdelay;
-       uint32_t        fs_rps; 
+       uint32_t        fs_rps;
        uint32_t        fs_bmask;
        uint32_t        fs_fmask;
        uint32_t        fs_bshift;
@@ -63,7 +63,7 @@ struct ufs_super_block {
        uint32_t        fs_cgsize;
        uint32_t        fs_ntrak;
        uint32_t        fs_nsect;
-       uint32_t        fs_spc; 
+       uint32_t        fs_spc;
        uint32_t        fs_ncyl;
        uint32_t        fs_cpg;
        uint32_t        fs_ipg;
@@ -95,7 +95,7 @@ struct ufs_super_block {
                        uint32_t        fs_cgrotor;
                        uint32_t        fs_ocsp[28];
                        uint32_t        fs_contigdirs;
-                       uint32_t        fs_csp; 
+                       uint32_t        fs_csp;
                        uint32_t        fs_maxcluster;
                        uint32_t        fs_active;
                        int32_t         fs_old_cpc;
@@ -172,7 +172,7 @@ int volume_id_probe_ufs(struct volume_id *id, uint64_t off)
 
        dbg("probing at offset 0x%llx", (unsigned long long) off);
 
-       for (i = 0; i < ARRAY_SIZE(offsets); i++) {     
+       for (i = 0; i < ARRAY_SIZE(offsets); i++) {
                ufs = volume_id_get_buffer(id, off + (offsets[i] * 0x400), 0x800);
                if (ufs == NULL)
                        return -1;