whitespace fixes (leading spaces to tab)
authorDenis Vlasenko <vda.linux@googlemail.com>
Sat, 13 Jan 2007 21:06:21 +0000 (21:06 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sat, 13 Jan 2007 21:06:21 +0000 (21:06 -0000)
archival/gzip.c
archival/libunarchive/get_header_cpio.c
coreutils/chown.c
coreutils/install.c
editors/awk.c
include/libbb.h
networking/telnetd.c
procps/kill.c
scripts/kconfig/lxdialog/menubox.c
sysklogd/syslogd.c
util-linux/fsck_minix.c

index b6705425e3a2d22d553bdbaa989d1affa050e453..2b520b3e722206bdf05bbc843f17730bfedc1dab 100644 (file)
@@ -1008,7 +1008,7 @@ static void compress_block(ct_data * ltree, ct_data * dtree);
 #  define SEND_CODE(c, tree) \
 { \
        if (verbose > 1) bb_error_msg("\ncd %3d ",(c)); \
-        send_bits(tree[c].Code, tree[c].Len); \
+       send_bits(tree[c].Code, tree[c].Len); \
 }
 #endif
 
index e0272003c81dc55ed2bbf210f3ac033f95dbd30b..6fd134018dc6025e82b8df15765af759a5ae42ad 100644 (file)
@@ -103,7 +103,7 @@ char get_header_cpio(archive_handle_t *archive_handle)
                /* Always round up */
                printf("%d blocks\n", (int) (archive_handle->offset % 512 ?
                                             archive_handle->offset / 512 + 1 :
-                                             archive_handle->offset / 512
+                                            archive_handle->offset / 512
                                            ));
                if (saved_hardlinks) { /* Bummer - we still have unresolved hardlinks */
                        hardlinks_t *tmp = saved_hardlinks;
index da6b6abdde0bf164b7fac7f4189d84a230d22ae4..09cf73f04c0bb8ddf8a5584ac8ce6c8525305b64 100644 (file)
@@ -72,7 +72,7 @@ int chown_main(int argc, char **argv)
                *groupName = ':'; /* replace '.' with ':' */
 
        /* First, try parsing "user[:[group]]" */
-        if (!groupName) { /* "user" */
+       if (!groupName) { /* "user" */
                ugid.uid = get_ug_id(*argv, xuname2uid);
        } else if (groupName == *argv) { /* ":group" */
                ugid.gid = get_ug_id(groupName + 1, xgroup2gid);
index aa7e8bf2bf8814b56035348c3efe38e550ba9e48..c899158aaf52d20967842e4a079f77a46d3fbc84 100644 (file)
@@ -86,7 +86,7 @@ int install_main(int argc, char **argv)
                                                break;
                                        }
                                }
-                               if ((flags & (OPT_OWNER|OPT_GROUP))
+                               if ((flags & (OPT_OWNER|OPT_GROUP))
                                 && lchown(*argv, uid, gid) == -1
                                ) {
                                        bb_perror_msg("cannot change ownership of %s", *argv);
index 9ed2781be89f2090d4bad06e3a71b2c39720290d..d6dcd9578ceabda54407aa139fef8b2288b78641 100644 (file)
@@ -2648,7 +2648,7 @@ int awk_main(int argc, char **argv)
        char *vnames = (char *)vNames; /* cheat */
        char *vvalues = (char *)vValues;
 
-        /* Undo busybox.c, or else strtod may eat ','! This breaks parsing:
+       /* Undo busybox.c, or else strtod may eat ','! This breaks parsing:
         * $1,$2 == '$1,' '$2', NOT '$1' ',' '$2' */
        if (ENABLE_LOCALE_SUPPORT)
                setlocale(LC_NUMERIC, "C");
index 72261b760f4e0ecfa5fc3efdbe4fe43a4bd530e6..4060498b8d6e80132c6e5603204aa33fceeb93af 100644 (file)
@@ -423,8 +423,8 @@ extern long xgroup2gid(const char *name);
 extern unsigned long get_ug_id(const char *s, long (*xname2id)(const char *));
 /* from chpst. Does not die, returns 0 on failure */
 struct bb_uidgid_t {
-        uid_t uid;
-        gid_t gid;
+       uid_t uid;
+       gid_t gid;
 };
 extern int get_uidgid(struct bb_uidgid_t*, const char*, int numeric_ok);
 /* what is this? */
index ff83c93dad9ab3e6bdcb49c8f9a39d71b883abf8..51bd0c012fd5b5d620c6a97f9444690a0eab8b47 100644 (file)
@@ -335,7 +335,7 @@ free_session(struct tsession *ts)
        free(ts);
 
        /* scan all sessions and find new maxfd */
-        ts = sessions;
+       ts = sessions;
        maxfd = 0;
        while (ts) {
                if (maxfd < ts->ptyfd)
index 18121f06fbc3f267577793c765c59ed75c3d7f8a..5b167326f038f10a0def58530ef68723304bdd5a 100644 (file)
@@ -94,7 +94,7 @@ do_it_now:
                pid = getpid();
                sid = getsid(pid);
                /* Now kill all processes except our session */
-               while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_SID))) {
+               while ((p = procps_scan(p, PSSCAN_PID|PSSCAN_SID))) {
                        if (p->sid != sid && p->pid != pid && p->pid != 1)
                                kill(p->pid, signo);
                }
index 078e55a2e34344114eb647b38faedeca144dbc32..1fd501b3956591ae057bd66569483cdc754cf245 100644 (file)
@@ -179,8 +179,8 @@ static void do_scroll(WINDOW *win, int *scroll, int n)
  * Display a menu for choosing among a number of options
  */
 int dialog_menu(const char *title, const char *prompt, int height, int width,
-                int menu_height, const char *current, int item_no,
-                const char *const *items)
+               int menu_height, const char *current, int item_no,
+               const char *const *items)
 {
        int i, j, x, y, box_x, box_y;
        int key = 0, button = 0, scroll = 0, choice = 0;
index 4052827967cb1d7d723bad4ce2a0372d11d2a6fc..716e41f5f319c5df2e0c6a4e7f8ec81c89bb1959 100644 (file)
@@ -201,7 +201,7 @@ static void log_to_shmem(const char *msg, int len)
 
        /* Circular Buffer Algorithm:
         * --------------------------
-         * tail == position where to store next syslog message.
+        * tail == position where to store next syslog message.
         * head == position of next message to retrieve ("print").
         * if head == tail, there is no "unprinted" messages left.
         * head is typically advanced by separate "reader" program,
index e2341ced12e184f83a64bd1c40405c1f58d42c52..4e9365116bedd737191279f3413383bab678a4f2 100644 (file)
@@ -155,7 +155,7 @@ static char super_block_buffer[BLOCK_SIZE];
 /* gcc likes this more (code is smaller) than macro variant */
 static ATTRIBUTE_ALWAYS_INLINE unsigned div_roundup(unsigned size, unsigned n)
 {
-        return (size + n-1) / n;
+       return (size + n-1) / n;
 }
 
 #if ENABLE_FEATURE_MINIX2