silly switch style fix
authorDenis Vlasenko <vda.linux@googlemail.com>
Wed, 27 Sep 2006 19:51:06 +0000 (19:51 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Wed, 27 Sep 2006 19:51:06 +0000 (19:51 -0000)
archival/dpkg.c
archival/libunarchive/data_extract_all.c
archival/unzip.c
coreutils/head.c
coreutils/sort.c
miscutils/setsid.c
networking/libiproute/iproute.c
networking/wget.c

index 2180d18..b7b1ef4 100644 (file)
@@ -317,7 +317,7 @@ static int version_compare(const unsigned int ver1, const unsigned int ver2)
 static int test_version(const unsigned int version1, const unsigned int version2, const unsigned int operator)
 {
        const int version_result = version_compare(version1, version2);
-       switch(operator) {
+       switch (operator) {
                case (VER_ANY):
                        return(TRUE);
                case (VER_EQUAL):
@@ -646,7 +646,7 @@ static unsigned int fill_package_struct(char *control_buffer)
                }
 
                field_num = compare_string_array(field_names, field_name);
-               switch(field_num) {
+               switch (field_num) {
                        case 0: /* Package */
                                new_node->name = search_name_hashtable(field_value);
                                break;
index c8d162b..b1c66a4 100644 (file)
@@ -55,7 +55,7 @@ void data_extract_all(archive_handle_t *archive_handle)
                }
        } else {
                /* Create the filesystem entry */
-               switch(file_header->mode & S_IFMT) {
+               switch (file_header->mode & S_IFMT) {
                        case S_IFREG: {
                                /* Regular file */
                                dst_fd = xopen3(file_header->name, O_WRONLY | O_CREAT | O_EXCL,
index 1b80aea..f639257 100644 (file)
@@ -115,9 +115,9 @@ int unzip_main(int argc, char **argv)
        struct stat stat_buf;
 
        while((opt = getopt(argc, argv, "-d:lnopqx")) != -1) {
-               switch(opt_range) {
+               switch (opt_range) {
                case 0: /* Options */
-                       switch(opt) {
+                       switch (opt) {
                        case 'l': /* List */
                                verbosity = v_list;
                                break;
index 8dc6ee0..50694bf 100644 (file)
@@ -62,7 +62,7 @@ int head_main(int argc, char **argv)
 
        /* No size benefit in converting this to bb_getopt_ulflags */
        while ((opt = getopt(argc, argv, head_opts)) > 0) {
-               switch(opt) {
+               switch (opt) {
 #if ENABLE_FEATURE_FANCY_HEAD
                        case 'q':
                                header_threshhold = INT_MAX;
index d86f8dc..7dfe176 100644 (file)
@@ -293,7 +293,7 @@ int sort_main(int argc, char **argv)
        }
 #ifdef CONFIG_FEATURE_SORT_BIG
        /* if no key, perform alphabetic sort */
-    if(!key_list) add_key()->range[0]=1;
+       if(!key_list) add_key()->range[0]=1;
        /* handle -c */
        if(global_flags&FLAG_c) {
                int j=(global_flags&FLAG_u) ? -1 : 0;
index 41d9ef2..347b2ba 100644 (file)
@@ -25,7 +25,7 @@ int setsid_main(int argc, char *argv[])
                bb_show_usage();
 
        if (getpgrp() == getpid()) {
-               switch(fork()){
+               switch (fork()){
                case -1:
                        bb_perror_msg_and_die("fork");
                case 0:
index c4bbd98..6c902eb 100644 (file)
@@ -820,7 +820,7 @@ int do_iproute(int argc, char **argv)
        if (*argv) {
                command_num = compare_string_array(ip_route_commands, *argv);
        }
-       switch(command_num) {
+       switch (command_num) {
                case 0: /* add*/
                        flags = NLM_F_CREATE|NLM_F_EXCL;
                        break;
index 0eb8cd6..6549739 100644 (file)
@@ -388,7 +388,7 @@ read_response:
                s = strchr(target.user, ':');
                if (s)
                        *(s++) = '\0';
-               switch(ftpcmd("USER ", target.user, sfp, buf)) {
+               switch (ftpcmd("USER ", target.user, sfp, buf)) {
                        case 230:
                                break;
                        case 331: