style fixes. No code changes.
authorDenis Vlasenko <vda.linux@googlemail.com>
Tue, 10 Apr 2007 15:42:06 +0000 (15:42 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Tue, 10 Apr 2007 15:42:06 +0000 (15:42 -0000)
13 files changed:
coreutils/stty.c
e2fsprogs/old_e2fsprogs/ext2fs/getsize.c
libbb/getopt32.c
modutils/insmod.c
modutils/modprobe.c
networking/route.c
networking/telnetd.c
runit/runsv.c
selinux/runcon.c
shell/hush.c
shell/lash.c
util-linux/ipcrm.c
util-linux/ipcs.c

index 7493192e9c855f2dad0300290ee4e584da36a33f..8757f247ce066a8219cf2cd33ff611ed3a203818 100644 (file)
 
 /* SunOS 5.3 loses (^Z doesn't work) if 'swtch' is the same as 'susp'.
    So the default is to disable 'swtch.'  */
-#if defined (__sparc__) && defined (__svr4__)
+#if defined(__sparc__) && defined(__svr4__)
 # undef CSWTCH
 # define CSWTCH _POSIX_VDISABLE
 #endif
 
-#if defined(VWERSE) && !defined (VWERASE)       /* AIX-3.2.5 */
+#if defined(VWERSE) && !defined(VWERASE)       /* AIX-3.2.5 */
 # define VWERASE VWERSE
 #endif
-#if defined(VDSUSP) && !defined (CDSUSP)
+#if defined(VDSUSP) && !defined(CDSUSP)
 # define CDSUSP Control('y')
 #endif
 #if !defined(VREPRINT) && defined(VRPRNT)       /* Irix 4.0.5 */
index 516886c1fa0ae4d39c05b0eb186968ff67b3d107..63a0dcad9c6251fc6b76bb389fbfefc3e58b1775 100644 (file)
@@ -55,7 +55,7 @@
 #include "ext2_fs.h"
 #include "ext2fs.h"
 
-#if defined(__CYGWIN__) || defined (WIN32)
+#if defined(__CYGWIN__) || defined(WIN32)
 #include <windows.h>
 #include <winioctl.h>
 
index 28b47974e7f2f0334efd8bb15f5b54653c1c22d2..382d28a4e7b0e64b9f3d0421f5a6472fd7c9b582 100644 (file)
@@ -445,7 +445,7 @@ getopt32(int argc, char **argv, const char *applet_opts, ...)
                }
                s--;
        }
-       va_end (p);
+       va_end(p);
 
        if (spec_flgs & FIRST_ARGV_IS_OPT) {
                if (argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') {
index d4575e03b015bffdd36377dafd132c661d952deb..7d5cf473c108f0866d07667257f963e33d45494e 100644 (file)
@@ -280,7 +280,7 @@ extern int insmod_ng_main( int argc, char **argv);
 #endif
 
 /* v850e */
-#if defined (__v850e__)
+#if defined(__v850e__)
 #define MATCH_MACHINE(x) ((x) == EM_V850 || (x) == EM_CYGNUS_V850)
 #define SHT_RELM       SHT_RELA
 #define Elf32_RelM     Elf32_Rela
@@ -982,7 +982,7 @@ arch_apply_relocation(struct obj_file *f,
                        *loc += v - got;
                        break;
 
-#elif defined (__microblaze__)
+#elif defined(__microblaze__)
                case R_MICROBLAZE_NONE:
                case R_MICROBLAZE_64_NONE:
                case R_MICROBLAZE_32_SYM_OP_SYM:
@@ -1540,7 +1540,7 @@ arch_apply_relocation(struct obj_file *f,
                        }
 # endif /* __SH5__ */
 
-#elif defined (__v850e__)
+#elif defined(__v850e__)
 
                case R_V850_NONE:
                        break;
@@ -1663,7 +1663,7 @@ bb_use_plt:
                                ip[2] = 0x7d6903a6;                           /* mtctr r11 */
                                ip[3] = 0x4e800420;                           /* bctr */
 #endif
-#if defined (__v850e__)
+#if defined(__v850e__)
                                /* We have to trash a register, so we assume that any control
                                   transfer more than 21-bits away must be a function call
                                   (so we can use a call-clobbered register).  */
@@ -1676,15 +1676,15 @@ bb_use_plt:
                        /* relative distance to target */
                        v -= dot;
                        /* if the target is too far away.... */
-#if defined (__arm__) || defined (__powerpc__)
+#if defined(__arm__) || defined(__powerpc__)
                        if ((int)v < -0x02000000 || (int)v >= 0x02000000)
-#elif defined (__v850e__)
+#elif defined(__v850e__)
                                if ((ElfW(Sword))v > 0x1fffff || (ElfW(Sword))v < (ElfW(Sword))-0x200000)
 #endif
                                        /* go via the plt */
                                        v = plt + pe->offset - dot;
 
-#if defined (__v850e__)
+#if defined(__v850e__)
                        if (v & 1)
 #else
                                if (v & 3)
@@ -1701,7 +1701,7 @@ bb_use_plt:
 #if defined(__powerpc__)
                        *loc = (*loc & ~0x03fffffc) | (v & 0x03fffffc);
 #endif
-#if defined (__v850e__)
+#if defined(__v850e__)
                        /* We write two shorts instead of a long because even 32-bit insns
                           only need half-word alignment, but the 32-bit data write needs
                           to be long-word aligned.  */
@@ -1895,7 +1895,7 @@ static void arch_create_got(struct obj_file *f)
                                got_needed = 1;
                                continue;
 
-#elif defined (__v850e__)
+#elif defined(__v850e__)
                        case R_V850_22_PCREL:
                                plt_needed = 1;
                                break;
index 57e19b4abd1534ed0f9d53769b0199f082603d61..09494ca5f9e68bf36a402876ab3a03af7914c5d6 100644 (file)
@@ -686,8 +686,8 @@ static int check_pattern(const char* pat_src, const char* mod_src) {
                ret = fnmatch(pat, mod, 0);
 
                if (ENABLE_FEATURE_CLEAN_UP) {
-                       free (pat);
-                       free (mod);
+                       free(pat);
+                       free(mod);
                }
 
                return ret;
index 06973900629d2f7d96bb65ac5ff1023d0918dbf9..5b3e68b4c621c3dd6841d268bf741d9614525650 100644 (file)
@@ -49,7 +49,7 @@
 #define RTF_REJECT      0x0200 /* Reject route                 */
 #endif
 
-#if defined (SIOCADDRTOLD) || defined (RTF_IRTT)       /* route */
+#if defined(SIOCADDRTOLD) || defined(RTF_IRTT) /* route */
 #define HAVE_NEW_ADDRT 1
 #endif
 
index 5c0463bab6ef51a6b1b260fcd2f3254de62ca3bc..4ab6f56561131fd979f1471a41adf1a05611dab1 100644 (file)
@@ -285,8 +285,6 @@ make_new_session(
 
        /* make new process group */
        setsid();
-       tcsetpgrp(0, getpid());
-       /* ^^^ strace says: "ioctl(0, TIOCSPGRP, [pid]) = -1 ENOTTY" -- ??! */
 
        /* open the child's side of the tty. */
        /* NB: setsid() disconnects from any previous ctty's. Therefore
@@ -296,6 +294,7 @@ make_new_session(
        dup2(fd, 1);
        dup2(fd, 2);
        while (fd > 2) close(fd--);
+       tcsetpgrp(0, getpid()); /* comment? */
 
        /* The pseudo-terminal allocated to the client is configured to operate in
         * cooked mode, and with XTABS CRMOD enabled (see tty(4)). */
index 61eb02e64d79aa0e05d4172b08a59e2b99319744..bd4a81eeeafb646d36d3f21299fd33fbc5e61eed 100644 (file)
@@ -303,7 +303,8 @@ static void startservice(struct svdir *s)
        }
        run[1] = NULL;
 
-       if (s->pid != 0) stopservice(s); /* should never happen */
+       if (s->pid != 0)
+               stopservice(s); /* should never happen */
        while ((p = fork()) == -1) {
                warn_cannot("fork, sleeping");
                sleep(5);
index a3543878cdd48687dad58376668270f6de896f77..9f61fdbb682f919339924526a611f82550fb2f96 100644 (file)
@@ -110,7 +110,7 @@ int runcon_main(int argc, char **argv)
        if (!(opts & OPTS_CONTEXT_COMPONENT)) {
                context = *argv++;
                if (!argv[0])
-                       bb_error_msg_and_die("no command found");
+                       bb_error_msg_and_die("no command given");
        }
 
        if (context) {
@@ -133,5 +133,4 @@ int runcon_main(int argc, char **argv)
        execvp(argv[0], argv);
 
        bb_perror_msg_and_die("cannot execute '%s'", argv[0]);
-       return 1;
 }
index 5bc83bc415d80f767704782ce747d5b440ecea21..666604dd950cb47e87b2ee4471129f0438ebf8c0 100644 (file)
@@ -2044,7 +2044,7 @@ static int reserved_word(o_string *dest, struct p_context *ctx)
                                *ctx = *old;   /* physical copy */
                                free(old);
                        }
-                       b_reset (dest);
+                       b_reset(dest);
                        return 1;
                }
        }
@@ -2666,7 +2666,7 @@ static void setup_job_control(void)
        static pid_t shell_pgrp;
        /* Loop until we are in the foreground.  */
        while (tcgetpgrp (shell_terminal) != (shell_pgrp = getpgrp ()))
-               kill (- shell_pgrp, SIGTTIN);
+               kill(- shell_pgrp, SIGTTIN);
 
        /* Ignore interactive and job-control signals.  */
        signal(SIGINT, SIG_IGN);
index 192900bb6afe6788c11363e73c5e5d854bdbda1c..f9d9deb62118dad67e38800e6e38d732650ba8a2 100644 (file)
@@ -582,7 +582,7 @@ static int setup_redirects(struct child_prog *prog, int squirrel[])
                if (openfd != redir->fd) {
                        if (squirrel && redir->fd < 3) {
                                squirrel[redir->fd] = dup(redir->fd);
-                               fcntl (squirrel[redir->fd], F_SETFD, FD_CLOEXEC);
+                               fcntl(squirrel[redir->fd], F_SETFD, FD_CLOEXEC);
                        }
                        dup2(openfd, redir->fd);
                        close(openfd);
@@ -763,7 +763,7 @@ static int expand_arguments(char *command)
                free(tmpcmd); /* Free mem allocated by strsep_space */
                if (retval == GLOB_NOSPACE) {
                        /* Mem may have been allocated... */
-                       globfree (&expand_result);
+                       globfree(&expand_result);
                        bb_error_msg(out_of_space);
                        return FALSE;
                } else if (retval != 0) {
@@ -786,7 +786,7 @@ static int expand_arguments(char *command)
                                strcat(command+total_length, expand_result.gl_pathv[i]);
                                total_length += length;
                        }
-                       globfree (&expand_result);
+                       globfree(&expand_result);
                }
        }
        free(cmd_copy);
@@ -1478,7 +1478,7 @@ static void setup_job_control(void)
                if (status == (shell_pgrp = getpgrp ())) {
                        break;
                }
-               kill (- shell_pgrp, SIGTTIN);
+               kill(- shell_pgrp, SIGTTIN);
        }
 
        /* Ignore interactive and job-control signals.  */
index d13fb83b1f461982dceae2e390a513130691934e..025f527cffc993e290db7841924a0dfffa97b3c3 100644 (file)
@@ -17,7 +17,7 @@
 #include <sys/msg.h>
 #include <sys/sem.h>
 
-#if defined (__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)
+#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)
 /* union semun is defined by including <sys/sem.h> */
 #else
 /* according to X/OPEN we have to define it ourselves */
index 5a7b22434d30c6ba5a73183aa399dd8edb3680d7..489480c85b674e675abb18d7af9cd558d12ffcf2 100644 (file)
@@ -67,7 +67,7 @@ struct shm_info {
 /* The last arg of semctl is a union semun, but where is it defined?
    X/OPEN tells us to define it ourselves, but until recently
    Linux include files would also define it. */
-#if defined (__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)
+#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)
 /* union semun is defined by including <sys/sem.h> */
 #else
 /* according to X/OPEN we have to define it ourselves */
@@ -84,7 +84,7 @@ union semun {
    <linux/ipc.h>, which defines a struct ipc_perm with such fields.
    glibc-1.09 has no support for sysv ipc.
    glibc 2 uses __key, __seq */
-#if defined (__GNU_LIBRARY__) && __GNU_LIBRARY__ > 1
+#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ > 1
 #define KEY __key
 #else
 #define KEY key