convert "do {...} while (1);" -> "while (1) {...}"
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 2 Mar 2011 03:07:14 +0000 (04:07 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 2 Mar 2011 03:07:14 +0000 (04:07 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/split.c
loginutils/vlock.c
networking/route.c
shell/ash.c

index db5a1727a501ef9f68c039d51547887d49f6e68c..79316ed741e1a286c386242cac0581b345272813 100644 (file)
@@ -32,7 +32,7 @@ static char *next_file(char *old, unsigned suffix_len)
        unsigned i = 1;
        char *curr;
 
-       do {
+       while (1) {
                curr = old + end - i;
                if (*curr < 'z') {
                        *curr += 1;
@@ -43,7 +43,7 @@ static char *next_file(char *old, unsigned suffix_len)
                        return NULL;
                }
                *curr = 'a';
-       } while (1);
+       }
 
        return old;
 }
index 216b317f10b09f957793ff010875ef61e115a256..0d0f3bca252a91240a8c4cd947833eee9cc70511 100644 (file)
@@ -93,16 +93,17 @@ int vlock_main(int argc UNUSED_PARAM, char **argv)
        term.c_lflag &= ~(ECHO | ECHOCTL);
        tcsetattr_stdin_TCSANOW(&term);
 
-       do {
+       while (1) {
                printf("Virtual console%s locked by %s.\n",
-                               option_mask32 /*o_lock_all*/ ? "s" : "",
-                               pw->pw_name);
+                               /* "s" if -a, else "": */ "s" + !option_mask32,
+                               pw->pw_name
+               );
                if (correct_password(pw)) {
                        break;
                }
                bb_do_delay(FAIL_DELAY);
                puts("Password incorrect");
-       } while (1);
+       }
 
 #ifdef __linux__
        ioctl(STDIN_FILENO, VT_SETMODE, &ovtm);
index ac4fbb472b1764850b12f6133476ffc7016f2d5b..98a03ded7128601524f7effb9401dcdc2caf476a 100644 (file)
@@ -605,7 +605,7 @@ static void INET6_displayroutes(void)
                set_flags(flags, (iflags & IPV6_MASK));
 
                r = 0;
-               do {
+               while (1) {
                        inet_pton(AF_INET6, addr6x + r,
                                          (struct sockaddr *) &snaddr6.sin6_addr);
                        snaddr6.sin6_family = AF_INET6;
@@ -624,7 +624,7 @@ static void INET6_displayroutes(void)
                                free(naddr6);
                                break;
                        }
-               } while (1);
+               }
        }
        fclose(fp);
 }
index 98d2c7c29edb47728ee653e86027b39c1a1f03a9..c3c95365678b12ab1f7a10343593d9ce55a41f35 100644 (file)
@@ -3539,12 +3539,12 @@ set_curjob(struct job *jp, unsigned mode)
 
        /* first remove from list */
        jpp = curp = &curjob;
-       do {
+       while (1) {
                jp1 = *jpp;
                if (jp1 == jp)
                        break;
                jpp = &jp1->prev_job;
-       } while (1);
+       }
        *jpp = jp1->prev_job;
 
        /* Then re-insert in correct position */
@@ -3560,14 +3560,14 @@ set_curjob(struct job *jp, unsigned mode)
        case CUR_RUNNING:
                /* newly created job or backgrounded job,
                   put after all stopped jobs. */
-               do {
+               while (1) {
                        jp1 = *jpp;
 #if JOBS
                        if (!jp1 || jp1->state != JOBSTOPPED)
 #endif
                                break;
                        jpp = &jp1->prev_job;
-               } while (1);
+               }
                /* FALLTHROUGH */
 #if JOBS
        case CUR_STOPPED:
@@ -3740,7 +3740,7 @@ setjobctl(int on)
                        goto out;
                /* fd is a tty at this point */
                close_on_exec_on(fd);
-               do { /* while we are in the background */
+               while (1) { /* while we are in the background */
                        pgrp = tcgetpgrp(fd);
                        if (pgrp < 0) {
  out:
@@ -3751,7 +3751,7 @@ setjobctl(int on)
                        if (pgrp == getpgrp())
                                break;
                        killpg(0, SIGTTIN);
-               } while (1);
+               }
                initialpgrp = pgrp;
 
                setsignal(SIGTSTP);
@@ -5970,7 +5970,7 @@ expari(int quotes)
        p = expdest - 1;
        *p = '\0';
        p--;
-       do {
+       while (1) {
                int esc;
 
                while ((unsigned char)*p != CTLARI) {
@@ -5988,7 +5988,7 @@ expari(int quotes)
                }
 
                p -= esc + 1;
-       } while (1);
+       }
 
        begoff = p - start;