Spelling fixes in comments, documentation, tests and examples
authorDenys Vlasenko <vda.linux@googlemail.com>
Mon, 17 Apr 2017 14:13:32 +0000 (16:13 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 17 Apr 2017 14:13:32 +0000 (16:13 +0200)
By klemens <ka7@github.com>

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
41 files changed:
archival/dpkg.c
archival/libarchive/decompress_bunzip2.c
archival/libarchive/unxz/xz_dec_lzma2.c
archival/tar.c
coreutils/dos2unix.c
docs/sigint.htm
docs/style-guide.txt
editors/sed.c
examples/var_service/dhcp_if/dhcp_handler
findutils/find.c
findutils/grep.c
libbb/getopt32.c
libpwdgrp/pwd_grp.c
loginutils/cryptpw.c
miscutils/inotifyd.c
miscutils/less.c
miscutils/time.c
modutils/Config.src
modutils/modinfo.c
modutils/modprobe-small.c
networking/dnsd.c
networking/ifenslave.c
networking/isrv.c
networking/nc_bloaty.c
networking/ntpd.c
networking/ping.c
networking/tcpudp.c
networking/udhcp/dhcpc.c
networking/udhcp/dhcprelay.c
networking/vconfig.c
shell/ash.c
shell/ash_test/ash-misc/unicode1.tests
shell/hush.c
shell/hush_test/hush-misc/unicode1.tests
sysklogd/logread.c
testsuite/readlink.tests
util-linux/cal.c
util-linux/hwclock.c
util-linux/renice.c
util-linux/switch_root.c
util-linux/volume_id/udf.c

index f133299e3f7e3c86389d8d617f0d25a132b0ccd0..1cd45eda474d9021a473bef724b39711c0247f7f 100644 (file)
@@ -18,7 +18,7 @@
  * known difference between busybox dpkg and the official dpkg that i don't
  * consider important, its worth keeping a note of differences anyway, just to
  * make it easier to maintain.
- *  - the first value for the confflile: field isnt placed on a new line.
+ *  - the first value for the confflile: field isn't placed on a new line.
  *  - when installing a package the status: field is placed at the end of the
  *      section, rather than just after the package: field.
  *
@@ -110,7 +110,7 @@ typedef struct common_node_s {
        edge_t **edge;
 } common_node_t;
 
-/* Currently it doesnt store packages that have state-status of not-installed
+/* Currently it doesn't store packages that have state-status of not-installed
  * So it only really has to be the size of the maximum number of packages
  * likely to be installed at any one time, so there is a bit of leeway here */
 #define STATUS_HASH_PRIME 8191
@@ -205,7 +205,7 @@ static int search_name_hashtable(const char *key)
        return probe_address;
 }
 
-/* this DOESNT add the key to the hashtable
+/* this DOESN'T add the key to the hashtable
  * TODO make it consistent with search_name_hashtable
  */
 static unsigned search_status_hashtable(const char *key)
@@ -467,7 +467,7 @@ static void add_split_dependencies(common_node_t *parent_node, const char *whole
                        version = strchr(field2, '(');
                        if (version == NULL) {
                                edge->operator = VER_ANY;
-                               /* Get the versions hash number, adding it if the number isnt already in there */
+                               /* Get the versions hash number, adding it if the number isn't already in there */
                                edge->version = search_name_hashtable("ANY");
                        } else {
                                /* Skip leading ' ' or '(' */
@@ -496,7 +496,7 @@ static void add_split_dependencies(common_node_t *parent_node, const char *whole
 
                                /* Truncate version at trailing ' ' or ')' */
                                version[strcspn(version, " )")] = '\0';
-                               /* Get the versions hash number, adding it if the number isnt already in there */
+                               /* Get the versions hash number, adding it if the number isn't already in there */
                                edge->version = search_name_hashtable(version);
                        }
 
@@ -562,7 +562,7 @@ static int read_package_field(const char *package_buffer, char **field_name, cha
                                        offset_name_end = offset;
                                        offset_value_start = next_offset;
                                }
-                               /* TODO: Name might still have trailing spaces if ':' isnt
+                               /* TODO: Name might still have trailing spaces if ':' isn't
                                 * immediately after name */
                                break;
                        case '\n':
@@ -776,7 +776,7 @@ static void index_status_file(const char *filename)
                const unsigned package_num = fill_package_struct(control_buffer);
                if (package_num != -1) {
                        status_node = xmalloc(sizeof(status_node_t));
-                       /* fill_package_struct doesnt handle the status field */
+                       /* fill_package_struct doesn't handle the status field */
                        status_line = strstr(control_buffer, "Status:");
                        if (status_line != NULL) {
                                status_line += 7;
@@ -850,7 +850,7 @@ static void write_status_file(deb_file_t **deb_file)
                if (status_hashtable[status_num] != NULL) {
                        const char *status_from_hashtable = name_hashtable[status_hashtable[status_num]->status];
                        if (strcmp(status_from_file, status_from_hashtable) != 0) {
-                               /* New status isnt exactly the same as old status */
+                               /* New status isn't exactly the same as old status */
                                const int state_status = get_status(status_num, 3);
                                if ((strcmp("installed", name_hashtable[state_status]) == 0)
                                 || (strcmp("unpacked", name_hashtable[state_status]) == 0)
@@ -919,7 +919,7 @@ static void write_status_file(deb_file_t **deb_file)
                                }
                        }
                }
-               /* If the package from the status file wasnt handle above, do it now*/
+               /* If the package from the status file wasn't handle above, do it now*/
                if (!write_flag) {
                        fprintf(new_status_file, "%s\n\n", control_buffer);
                }
@@ -946,7 +946,7 @@ static void write_status_file(deb_file_t **deb_file)
                if (errno != ENOENT)
                        bb_error_msg_and_die("can't create backup status file");
                /* Its ok if renaming the status file fails because status
-                * file doesnt exist, maybe we are starting from scratch */
+                * file doesn't exist, maybe we are starting from scratch */
                bb_error_msg("no status file found, creating new one");
        }
 
@@ -1061,7 +1061,7 @@ static int check_deps(deb_file_t **deb_file, int deb_start /*, int dep_max_count
        }
 
 
-       /* Check dependendcies */
+       /* Check dependentcies */
        for (i = 0; i < PACKAGE_HASH_PRIME; i++) {
                int status_num = 0;
                int number_of_alternatives = 0;
@@ -1244,7 +1244,7 @@ static void run_package_script_or_die(const char *package_name, const char *scri
 
        script_path = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, script_type);
 
-       /* If the file doesnt exist is isnt fatal */
+       /* If the file doesn't exist it isn't fatal */
        result = access(script_path, F_OK) ? EXIT_SUCCESS : system(script_path);
        free(script_path);
        if (result)
@@ -1839,7 +1839,7 @@ int dpkg_main(int argc UNUSED_PARAM, char **argv)
                                ) {
                                        status_node = xmalloc(sizeof(status_node_t));
                                        status_node->package = deb_file[deb_count]->package;
-                                       /* reinstreq isnt changed to "ok" until the package control info
+                                       /* reinstreq isn't changed to "ok" until the package control info
                                         * is written to the status file*/
                                        status_node->status = search_name_hashtable("install reinstreq not-installed");
                                        status_hashtable[status_num] = status_node;
index 4fb989c29fe47930b25f1a1b22f259c5f57b75bc..803702f75177e6d2372be3a19701ed43e6af0220 100644 (file)
@@ -308,7 +308,7 @@ static int get_next_block(bunzip_data *bd)
                base = hufGroup->base - 1;
                limit = hufGroup->limit - 1;
 
-               /* Calculate permute[].  Concurently, initialize temp[] and limit[]. */
+               /* Calculate permute[].  Concurrently, initialize temp[] and limit[]. */
                pp = 0;
                for (i = minLen; i <= maxLen; i++) {
                        int k;
index 351251f7c15ae9f59b48f35ae728beaa9cd9d4fe..bca41e705373a4a0dba1ff62ba0348d44e875d9d 100644 (file)
@@ -486,11 +486,11 @@ static __always_inline void XZ_FUNC rc_normalize(struct rc_dec *rc)
 }
 
 /*
- * Decode one bit. In some versions, this function has been splitted in three
+ * Decode one bit. In some versions, this function has been split in three
  * functions so that the compiler is supposed to be able to more easily avoid
  * an extra branch. In this particular version of the LZMA decoder, this
  * doesn't seem to be a good idea (tested with GCC 3.3.6, 3.4.6, and 4.3.3
- * on x86). Using a non-splitted version results in nicer looking code too.
+ * on x86). Using a non-split version results in nicer looking code too.
  *
  * NOTE: This must return an int. Do not make it return a bool or the speed
  * of the code generated by GCC 3.x decreases 10-15 %. (GCC 4.3 doesn't care,
index b1d58a2df6e745c13d4872f3a81dca754c29b7de..b70e00a8bcd3d7e84bf3d7fad5e4e1112cddd754 100644 (file)
@@ -529,8 +529,8 @@ static int FAST_FUNC writeFileToTarball(const char *fileName, struct stat *statb
        /*
         * Check to see if we are dealing with a hard link.
         * If so -
-        * Treat the first occurance of a given dev/inode as a file while
-        * treating any additional occurances as hard links.  This is done
+        * Treat the first occurrence of a given dev/inode as a file while
+        * treating any additional occurrences as hard links.  This is done
         * by adding the file information to the HardLinkInfo linked list.
         */
        tbInfo->hlInfo = NULL;
index 6d2347163364ccf21024875b0c18b2dd5cebf444..9d81ccca66d15824c9fb86f0b93805d87e4d17fd 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * dos2unix for BusyBox
  *
- * dos2unix '\n' convertor 0.5.0
+ * dos2unix '\n' converter 0.5.0
  * based on Unix2Dos 0.9.0 by Peter Hanecak (made 19.2.1997)
  * Copyright 1997,.. by Peter Hanecak <hanecak@megaloman.sk>.
  * All rights reserved.
index e230f4df7929112cb2266560dc9a7739920ecb85..d656aeb8ce3611a81ad366cf1314c41d3f6f9188 100644 (file)
@@ -45,7 +45,7 @@ intention.
 
 </td></tr><tr><th valign=top align=left>Required knowledge: </th>
 <td valign=top align=left>You have to know what it means to catch SIGINT or SIGQUIT and how
-processes are waiting for other processes (childs) they spawned.
+processes are waiting for other processes (children) they spawned.
 
 
 </td></tr></table>
@@ -366,7 +366,7 @@ signal, it has to take care of communicating the signal status
 itself.
 
 <p>Some programs don't do this. On SIGINT, they do cleanup and exit
-immediatly, but the calling shell isn't told about the non-normal exit
+immediately, but the calling shell isn't told about the non-normal exit
 and it will call the next program in the script.
 
 <p>As a result, the user hits SIGINT and while one program exits, the
@@ -446,7 +446,7 @@ handlers, so it is portable.
 <code>trap</code> command. Here, the same as for C programs apply.  If
 the intention of SIGINT is to end your program, you have to exit in a
 way that the calling programs "sees" that you have been killed.  If
-you don't catch SIGINT, this happend automatically, but of you catch
+you don't catch SIGINT, this happened automatically, but of you catch
 SIGINT, i.e. to do cleanup work, you have to end the program by
 killing yourself, not by calling exit.
 
@@ -466,7 +466,7 @@ files (which isn't really portable in C, though).
 bourne shell. Every language implementation that lets you catch SIGINT
 should also give you the option to reset the signal and kill yourself.
 
-<P>It is always desireable to exit the right way, even if you don't
+<P>It is always desirable to exit the right way, even if you don't
 expect your usual callers to depend on it, some unusual one will come
 along. This proper exit status will be needed for WCE and will not
 hurt when the calling shell uses IUE or WUE.
@@ -565,7 +565,7 @@ comments the scripts echo.
 <th>What happens when a shellscript called emacs, the user did not use
 <code>C-c</code> and the script has additional commands in it?</th>
 <th>What happens if a non-interactive child catches SIGINT?</th>
-<th>To behave properly, childs must do what?</th>
+<th>To behave properly, children must do what?</th>
 </tr>
 
 <tr valign=top align=left>
index 10ed893dc96f3e47ba7494b74867f00a78b39ecb..9eed7f125156d67e14f2fce405129a706d5a1a1a 100644 (file)
@@ -329,7 +329,7 @@ With "const int" compiler may fail to optimize it out and will reserve
 a real storage in rodata for it! (Hopefully, newer gcc will get better
 at it...).  With "define", you have slight risk of polluting namespace
 (#define doesn't allow you to redefine the name in the inner scopes),
-and complex "define" are evaluated each time they uesd, not once
+and complex "define" are evaluated each time they used, not once
 at declarations like enums. Also, the preprocessor does _no_ type checking
 whatsoever, making it much more error prone.
 
index 637a6851bcbd726c44c2b2786a162930b87caf77..ca9ab205419ec9f4734141a94ecff7ffe134e7e3 100644 (file)
@@ -337,7 +337,7 @@ static int get_address(const char *my_str, int *linenum, regex_t ** regex)
 
        if (isdigit(*my_str)) {
                *linenum = strtol(my_str, (char**)&pos, 10);
-               /* endstr shouldnt ever equal NULL */
+               /* endstr shouldn't ever equal NULL */
        } else if (*my_str == '$') {
                *linenum = -1;
                pos++;
@@ -444,7 +444,7 @@ static int parse_subst_cmd(sed_cmd_t *sed_cmd, const char *substr)
                        free(fname);
                        break;
                }
-               /* Ignore case (gnu exension) */
+               /* Ignore case (gnu extension) */
                case 'i':
                case 'I':
                        cflags |= REG_ICASE;
@@ -587,7 +587,7 @@ static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr)
                free(match);
                free(replace);
        }
-       /* if it wasnt a single-letter command that takes no arguments
+       /* if it wasn't a single-letter command that takes no arguments
         * then it must be an invalid command.
         */
        else if (idx >= IDX_nul) { /* not d,D,g,G,h,H,l,n,N,p,P,q,x,=,{,} */
@@ -751,7 +751,7 @@ static void do_subst_w_backrefs(char *line, char *replace)
                                continue;
                        }
                        /* I _think_ it is impossible to get '\' to be
-                        * the last char in replace string. Thus we dont check
+                        * the last char in replace string. Thus we don't check
                         * for replace[i] == NUL. (counterexample anyone?) */
                        /* if we find a backslash escaped character, print the character */
                        pipe_putc(replace[i]);
index 3d2a5cb791bb9428f0830cae62a34c52265015ff..3d44a60226e6dbc12902690ea0753a43a8869ab2 100755 (executable)
@@ -21,7 +21,7 @@
 # ntpsrv=10.34.32.125 10.34.255.7
 #
 # renew: lease is renewed. Environment is similar to "bound".
-# The IP address does not change, however, the other DHCP paramaters,
+# The IP address does not change, however, the other DHCP parameters,
 # such as the default gateway, subnet mask, and dns server may change.
 #
 # nak: udhcpc received a NAK message.
index 67aa40b211f9f4c32d795111e442897fa248bbae..0596c005929cda2e5bfc85a2bf01e355a37c1fb1 100644 (file)
 //config:      default y
 //config:      depends on FIND
 //config:      help
-//config:        If the file is a directory, dont descend into it. Useful for
+//config:        If the file is a directory, don't descend into it. Useful for
 //config:        exclusion .svn and CVS directories.
 //config:
 //config:config FEATURE_FIND_DELETE
index 261e563d5a0bee940604817b00be5e138565c7cf..d66d85a53d78e17aa2bf6a87bdf85befcba22206 100644 (file)
@@ -515,7 +515,7 @@ static int grep_file(FILE *file)
                                if (option_mask32 & OPT_o) {
                                        if (FGREP_FLAG) {
                                                /* -Fo just prints the pattern
-                                                * (unless -v: -Fov doesnt print anything at all) */
+                                                * (unless -v: -Fov doesn't print anything at all) */
                                                if (found)
                                                        print_line(gl->pattern, strlen(gl->pattern), linenum, ':');
                                        } else while (1) {
@@ -823,7 +823,7 @@ int grep_main(int argc UNUSED_PARAM, char **argv)
  grep_done: ;
        } while (*argv && *++argv);
 
-       /* destroy all the elments in the pattern list */
+       /* destroy all the elements in the pattern list */
        if (ENABLE_FEATURE_CLEAN_UP) {
                while (pattern_head) {
                        llist_t *pattern_head_ptr = pattern_head;
index 3104826eff3c5f5b40a63d44f227a71ec4308bbf..b87b835386d92fc3b95c3452649b878295ed4fcc 100644 (file)
@@ -128,7 +128,7 @@ const char *opt_complementary
  "abc"  If groups of two or more chars are specified, the first char
         is the main option and the other chars are secondary options.
         Their flags will be turned on if the main option is found even
-        if they are not specifed on the command line.  For example:
+        if they are not specified on the command line.  For example:
 
         opt_complementary = "abc";
         flags = getopt32(argv, "abcd")
index cefbc8a7e17172952ad6fea3686882bcfc39ab3c..c9bbc8bdadce5ce754407d0b3e4128f40ec62fde 100644 (file)
@@ -14,7 +14,7 @@
  *    exit using the atexit function to make valgrind happy.
  * 2) the passwd/group files:
  *      a) must contain the expected number of fields (as per count of field
- *         delimeters ":") or we will complain with a error message.
+ *         delimiters ":") or we will complain with a error message.
  *      b) leading and trailing whitespace in fields is stripped.
  *      c) some fields are not allowed to be empty (e.g. username, uid/gid),
  *         and in this case NULL is returned and errno is set to EINVAL.
@@ -149,7 +149,7 @@ static struct statics *get_S(void)
 /* Internal functions */
 
 /* Divide the passwd/group/shadow record in fields
- * by substituting the given delimeter
+ * by substituting the given delimiter
  * e.g. ':' or ',' with '\0'.
  * Returns the number of fields found.
  * Strips leading and trailing whitespace in fields.
index 696e169fcaf24664fe8b6eef9c888f663738a98e..3dc8232e0015620fdf3422e35f55e1391ffcf505 100644 (file)
@@ -64,7 +64,7 @@ OPTIONS
     $1$.
 -R, --rounds=NUMBER
     Use NUMBER rounds. This argument is ignored if the method
-    choosen does not support variable rounds. For the OpenBSD Blowfish
+    chosen does not support variable rounds. For the OpenBSD Blowfish
     method this is the logarithm of the number of rounds.
 -m, --method=TYPE
     Compute the password using the TYPE method. If TYPE is 'help'
index 601df64650ef1c68c730c409541b6dcc4d795641..db8ddce92c6651e9c2c80fd9df710cae6cbac481 100644 (file)
@@ -12,7 +12,7 @@
  * Use as follows:
  * # inotifyd /user/space/agent dir/or/file/being/watched[:mask] ...
  *
- * When a filesystem event matching the specified mask is occured on specified file (or directory)
+ * When a filesystem event matching the specified mask is occurred on specified file (or directory)
  * a userspace agent is spawned and given the following parameters:
  * $1. actual event(s)
  * $2. file (or directory) name
index 0b0a9aed4be26e7290d9813cf946e5b25e2d44ca..507e579c4b5d1a730cf1f29f822b5554b377fb24 100644 (file)
@@ -267,7 +267,7 @@ struct globals {
 /* flines[] are lines read from stdin, each in malloc'ed buffer.
  * Line numbers are stored as uint32_t prepended to each line.
  * Pointer is adjusted so that flines[i] points directly past
- * line number. Accesor: */
+ * line number. Accessor: */
 #define MEMPTR(p) ((char*)(p) - 4)
 #define LINENO(p) (*(uint32_t*)((p) - 4))
 
index a73a837d8f78a3a70b307abfca928f633f51bd53..2be750664ac2a196c9d5bbe6be01bcbb5ab216ba 100644 (file)
@@ -397,7 +397,7 @@ static void run_command(char *const *cmd, resource_t *resp)
        }
 
        /* Have signals kill the child but not self (if possible).  */
-//TODO: just block all sigs? and reenable them in the very end in main?
+//TODO: just block all sigs? and re-enable them in the very end in main?
        interrupt_signal = signal(SIGINT, SIG_IGN);
        quit_signal = signal(SIGQUIT, SIG_IGN);
 
index 5f0b0cec4ad320899f80fda4ad245cc189cb7dc6..9b76c83d293304a1b68c34b9f44713a8118fc587 100644 (file)
@@ -75,7 +75,7 @@ config FEATURE_INSMOD_KSYMOOPS_SYMBOLS
        depends on FEATURE_2_4_MODULES && (INSMOD || MODPROBE)
        help
          By adding module symbols to the kernel symbol table, Oops messages
-         occuring within kernel modules can be properly debugged. By enabling
+         occurring within kernel modules can be properly debugged. By enabling
          this feature, module symbols will always be added to the kernel symbol
          table for proper debugging support. If you are not interested in
          Oops messages from kernel modules, say N.
index aa641ad54c7eeddaa95beb29b9b3f75d2664d80f..ead2cf16fbbb94c7cb37cbe5aa0bade30231843f 100644 (file)
@@ -104,7 +104,7 @@ static void modinfo(const char *path, const char *version,
                        char *after_pattern;
 
                        ptr = memchr(ptr, *pattern, len - (ptr - (char*)the_module));
-                       if (ptr == NULL) /* no occurance left, done */
+                       if (ptr == NULL) /* no occurrence left, done */
                                break;
                        after_pattern = is_prefixed_with(ptr, pattern);
                        if (after_pattern && *after_pattern == '=') {
index 1285783d0a4a020976a25c9d7fd52088a4ba77b8..053a7df896611ae43f4a3beec7e7cdcd3bc26723 100644 (file)
@@ -169,7 +169,7 @@ static char* find_keyword(char *ptr, size_t len, const char *word)
 
                /* search for the first char in word */
                ptr = memchr(ptr, word[0], len);
-               if (ptr == NULL) /* no occurance left, done */
+               if (ptr == NULL) /* no occurrence left, done */
                        break;
                after_word = is_prefixed_with(ptr, word);
                if (after_word)
@@ -411,7 +411,7 @@ static FAST_FUNC int fileAction(const char *pathname,
                if (load_module(pathname, module_load_options) == 0) {
                        /* Load was successful, there is nothing else to do.
                         * This can happen ONLY for "top-level" module load,
-                        * not a dep, because deps dont do dirscan. */
+                        * not a dep, because deps don't do dirscan. */
                        exit(EXIT_SUCCESS);
                }
        }
index 7be90018d9071ea71a3bfaac808a2ce077133e4b..1b85618c639f797bd363803ce7743cbf29720e4f 100644 (file)
@@ -360,7 +360,7 @@ RDATA   a variable length string of octets that describes the resource.
 
 In order to reduce the size of messages, domain names coan be compressed.
 An entire domain name or a list of labels at the end of a domain name
-is replaced with a pointer to a prior occurance of the same name.
+is replaced with a pointer to a prior occurrence of the same name.
 
 The pointer takes the form of a two octet sequence:
     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
index 1cb765e230d83756ac85531e864f45b9d0e8a865..0709312093a844899ddd3fab65c377bb8a304043 100644 (file)
@@ -55,7 +55,7 @@
  *
  *    - 2003/03/18 - Tsippy Mendelson <tsippy.mendelson at intel dot com> and
  *                   Shmulik Hen <shmulik.hen at intel dot com>
- *       - Moved setting the slave's mac address and openning it, from
+ *       - Moved setting the slave's mac address and opening it, from
  *         the application to the driver. This enables support of modes
  *         that need to use the unique mac address of each slave.
  *         The driver also takes care of closing the slave and restoring its
index 3673db715e45b58a8f78f7f0192fa33fff61f2f7..97f5c6d4e06942fa3435662a13e957349e149e0e 100644 (file)
@@ -191,7 +191,7 @@ static void handle_accept(isrv_state_t *state, int fd)
        DPRINTF("new_peer(%d)", newfd);
        n = state->new_peer(state, newfd);
        if (n)
-               remove_peer(state, n); /* unsuccesful peer start */
+               remove_peer(state, n); /* unsuccessful peer start */
 }
 
 static void handle_fd_set(isrv_state_t *state, fd_set *fds, int (*h)(int, void **))
index f8c375362bb2c21b9b77e3da00dc811e858a87dd..3db7849824b92cff13ef4bb6430965ec5f56a050 100644 (file)
@@ -459,7 +459,7 @@ create new one, and bind() it. TODO */
         so I don't feel bad.
         The *real* question is why BFD sockets wasn't designed to allow listens for
         connections *from* specific hosts/ports, instead of requiring the caller to
-        accept the connection and then reject undesireable ones by closing.
+        accept the connection and then reject undesirable ones by closing.
         In other words, we need a TCP MSG_PEEK. */
        /* bbox: removed most of it */
                lcladdr = xmalloc_sockaddr2dotted(&ouraddr->u.sa);
@@ -502,7 +502,7 @@ static int udptest(void)
        /* use the tcp-ping trick: try connecting to a normally refused port, which
         causes us to block for the time that SYN gets there and RST gets back.
         Not completely reliable, but it *does* mostly work. */
-       /* Set a temporary connect timeout, so packet filtration doesnt cause
+       /* Set a temporary connect timeout, so packet filtration doesn't cause
         us to hang forever, and hit it */
                o_wait = 5;                     /* enough that we'll notice?? */
                rr = xsocket(ouraddr->u.sa.sa_family, SOCK_STREAM, 0);
index 5cc71ca7a266479c76c638f0a5f6300be29a340b..73d27ac207c62d978d0d6216a7706b6940b59f96 100644 (file)
@@ -393,7 +393,7 @@ struct globals {
         * too big and we will step. I observed it with -6.
         *
         * OTOH, setting precision_sec far too small would result in futile
-        * attempts to syncronize to an unachievable precision.
+        * attempts to synchronize to an unachievable precision.
         *
         * -6 is 1/64 sec, -7 is 1/128 sec and so on.
         * -8 is 1/256 ~= 0.003906 (worked well for me --vda)
@@ -754,7 +754,7 @@ reset_peer_stats(peer_t *p, double offset)
        bool small_ofs = fabs(offset) < STEP_THRESHOLD;
 
        /* Used to set p->filter_datapoint[i].d_dispersion = MAXDISP
-        * and clear reachable bits, but this proved to be too agressive:
+        * and clear reachable bits, but this proved to be too aggressive:
         * after step (tested with suspending laptop for ~30 secs),
         * this caused all previous data to be considered invalid,
         * making us needing to collect full ~8 datapoints per peer
@@ -1715,7 +1715,7 @@ update_local_clock(peer_t *p)
         * It looks like Linux kernel's PLL is far too gentle in changing
         * tmx.freq in response to clock offset. Offset keeps growing
         * and eventually we fall back to smaller poll intervals.
-        * We can make correction more agressive (about x2) by supplying
+        * We can make correction more aggressive (about x2) by supplying
         * PLL time constant which is one less than the real one.
         * To be on a safe side, let's do it only if offset is significantly
         * larger than jitter.
index ef31e000b7d8de5fa37c1eec332784897fbab6cc..94fb007f51eb123ecc6a7079e5c900f8fc92e81f 100644 (file)
@@ -478,7 +478,7 @@ static void sendping_tail(void (*sp)(int), int size_pkt)
        } else { /* -c NN, and all NN are sent (and no deadline) */
                /* Wait for the last ping to come back.
                 * -W timeout: wait for a response in seconds.
-                * Affects only timeout in absense of any responses,
+                * Affects only timeout in absence of any responses,
                 * otherwise ping waits for two RTTs. */
                unsigned expire = timeout;
 
@@ -712,7 +712,7 @@ static void ping4(len_and_sockaddr *lsa)
 
        if (opt_ttl != 0) {
                setsockopt_int(pingsock, IPPROTO_IP, IP_TTL, opt_ttl);
-               /* above doesnt affect packets sent to bcast IP, so... */
+               /* above doesn't affect packets sent to bcast IP, so... */
                setsockopt_int(pingsock, IPPROTO_IP, IP_MULTICAST_TTL, opt_ttl);
        }
 
index 3a6c68646d592477481d6aad9b69a73c38be2a87..3ebe7d5fc3f6facd5f321650254f486f5d7380f1 100644 (file)
@@ -683,7 +683,7 @@ prog
 -E
     no special environment. Do not set up TCP-related environment variables.
 -v
-    verbose. Print verbose messsages to standard output.
+    verbose. Print verbose messages to standard output.
 -vv
     more verbose. Print more verbose messages to standard output.
     * no difference between -v and -vv in busyboxed version
index 881512cf37d1fe6dbc2c3433c66cb415aae8911e..c45a0af1a28d0a2e38bc39724910c095d9e6e94c 100644 (file)
@@ -1460,7 +1460,7 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
                                        already_waited_sec += (unsigned)monotonic_sec() - timestamp_before_wait;
                                        continue;
                                }
-                               /* Else: an error occured, panic! */
+                               /* Else: an error occurred, panic! */
                                bb_perror_msg_and_die("select");
                        }
                }
index 7cb19b14e1a6821843021ea21f6bd6f470305887..ea84c0dd7d438ccc03d818a474895661dac418ba 100644 (file)
@@ -361,7 +361,7 @@ int dhcprelay_main(int argc, char **argv)
 //   which the reply must be sent (i.e., the host or router interface
 //   connected to the same network as the BOOTP client).  If the content
 //   of the 'giaddr' field does not match one of the relay agent's
-//   directly-connected logical interfaces, the BOOTREPLY messsage MUST be
+//   directly-connected logical interfaces, the BOOTREPLY message MUST be
 //   silently discarded.
                                if (udhcp_read_interface(iface_list[i], NULL, &dhcp_msg.gateway_nip, NULL)) {
                                        /* Fall back to our IP on server iface */
index f3020409a2efcafab5552f2166b80f20f2027573..854eca0a1abe68de9a8c4fff1feb1f0350c19c91 100644 (file)
@@ -138,7 +138,7 @@ int vconfig_main(int argc, char **argv)
                /* I suppose one could try to combine some of the function calls below,
                 * since ifr.u.flag, ifr.u.VID, and ifr.u.skb_priority are all same-sized
                 * (unsigned) int members of a unions.  But because of the range checking,
-                * doing so wouldn't save that much space and would also make maintainence
+                * doing so wouldn't save that much space and would also make maintenance
                 * more of a pain.
                 */
                if (ifr.cmd == SET_VLAN_FLAG_CMD) {
index e170bec2ac29a2338d4ad59a44e4b6c149460fe3..70ee15ed8016607c48aaf6cc4587e28ac19d41b0 100644 (file)
@@ -3849,7 +3849,7 @@ setjobctl(int on)
                }
                /* fd is a tty at this point */
                fd = fcntl(fd, F_DUPFD, 10);
-               if (ofd >= 0) /* if it is "/dev/tty", close. If 0/1/2, dont */
+               if (ofd >= 0) /* if it is "/dev/tty", close. If 0/1/2, don't */
                        close(ofd);
                if (fd < 0)
                        goto out; /* F_DUPFD failed */
@@ -6310,7 +6310,7 @@ static char *evalvar(char *p, int flags, struct strlist *var_str_list);
  * $@ like $* since no splitting will be performed.
  *
  * var_str_list (can be NULL) is a list of "VAR=val" strings which take precedence
- * over shell varables. Needed for "A=a B=$A; echo $B" case - we use it
+ * over shell variables. Needed for "A=a B=$A; echo $B" case - we use it
  * for correct expansion of "B=$A" word.
  */
 static void
@@ -6520,8 +6520,8 @@ scanright(char *startp, char *rmesc, char *rmescend,
                if (try2optimize) {
                        /* Maybe we can optimize this:
                         * if pattern ends with unescaped *, we can avoid checking
-                        * shorter strings: if "foo*" doesnt match "raw_value_of_v",
-                        * it wont match truncated "raw_value_of_" strings too.
+                        * shorter strings: if "foo*" doesn't match "raw_value_of_v",
+                        * it won't match truncated "raw_value_of_" strings too.
                         */
                        unsigned plen = strlen(pattern);
                        /* Does it end with "*"? */
@@ -7248,7 +7248,7 @@ expandmeta(struct strlist *str /*, int flag*/)
 // Which means you need to unescape the string, right? Not so fast:
 // if there _is_ a file named "file\?" (with backslash), it is returned
 // as "file\?" too (whichever pattern you used to find it, say, "file*").
-// You DONT KNOW by looking at the result whether you need to unescape it.
+// You DON'T KNOW by looking at the result whether you need to unescape it.
 //
 // Worse, globbing of "file\?" in a directory with two files, "file?" and "file\?",
 // returns "file\?" - which is WRONG: "file\?" pattern matches "file?" file.
@@ -13088,7 +13088,7 @@ exportcmd(int argc UNUSED_PARAM, char **argv)
        }
        flag_off = ~flag_off;
 
-       /*if (opt_p_not_specified) - bash doesnt check this. Try "export -p NAME" */
+       /*if (opt_p_not_specified) - bash doesn't check this. Try "export -p NAME" */
        {
                aptr = argptr;
                name = *aptr;
index 8788ba9104d791f0bfc2d6fb6de280b99655fdc9..b8479cb41736357f9bfd04bc0232b75b2a11399f 100755 (executable)
@@ -5,7 +5,7 @@ a=`printf "\xcc\x80"`
 # Should print 1
 echo ${#a}
 
-# A Japanese katakana charachter U+30a3
+# A Japanese katakana character U+30a3
 a=`printf "\xe3\x82\xa3"`
 # Should print 1
 echo ${#a}
index 4123cc19e875526996e889a22f85e92f369a3a78..e18920f508f5b98daf5963c3fb7c9697d727c8a8 100644 (file)
@@ -1908,7 +1908,7 @@ static int check_and_run_traps(void)
                        G.count_SIGCHLD++;
 //bb_error_msg("[%d] check_and_run_traps: G.count_SIGCHLD:%d G.handled_SIGCHLD:%d", getpid(), G.count_SIGCHLD, G.handled_SIGCHLD);
                        /* Note:
-                        * We dont do 'last_sig = sig' here -> NOT returning this sig.
+                        * We don't do 'last_sig = sig' here -> NOT returning this sig.
                         * This simplifies wait builtin a bit.
                         */
                        break;
@@ -1917,7 +1917,7 @@ static int check_and_run_traps(void)
                        debug_printf_exec("%s: sig:%d default handling is to ignore\n", __func__, sig);
                        /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
                        /* Note:
-                        * We dont do 'last_sig = sig' here -> NOT returning this sig.
+                        * We don't do 'last_sig = sig' here -> NOT returning this sig.
                         * Example: wait is not interrupted by TERM
                         * in interactive shell, because TERM is ignored.
                         */
@@ -2280,7 +2280,7 @@ static void reinit_unicode_for_hush(void)
  *     AT\
  *     H\
  *     \
- * It excercises a lot of corner cases.
+ * It exercises a lot of corner cases.
  */
 static void cmdedit_update_prompt(void)
 {
@@ -5235,7 +5235,7 @@ static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len
                        /* And now we want to add { or } and continue:
                         *  o_addchr(o, c);
                         *  continue;
-                        * luckily, just falling throught achieves this.
+                        * luckily, just falling through achieves this.
                         */
                }
 #endif
@@ -5830,7 +5830,7 @@ static NOINLINE int expand_vars_to_list(o_string *output, int n, char *arg)
                        arg++;
                        /* Can't just stuff it into output o_string,
                         * expanded result may need to be globbed
-                        * and $IFS-splitted */
+                        * and $IFS-split */
                        debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
                        G.last_exitcode = process_command_subs(&subst_result, arg);
                        debug_printf_subst("SUBST RES:%d '%s'\n", G.last_exitcode, subst_result.data);
@@ -7320,7 +7320,7 @@ static int process_wait_result(struct pipe *fg_pipe, pid_t childpid, int status)
                        /* There are still running processes in the fg_pipe */
                        return -1;
                }
-               /* It wasnt in fg_pipe, look for process in bg pipes */
+               /* It wasn't in fg_pipe, look for process in bg pipes */
        }
 
 #if ENABLE_HUSH_JOB
index 8788ba9104d791f0bfc2d6fb6de280b99655fdc9..b8479cb41736357f9bfd04bc0232b75b2a11399f 100755 (executable)
@@ -5,7 +5,7 @@ a=`printf "\xcc\x80"`
 # Should print 1
 echo ${#a}
 
-# A Japanese katakana charachter U+30a3
+# A Japanese katakana character U+30a3
 a=`printf "\xe3\x82\xa3"`
 # Should print 1
 echo ${#a}
index 1f0c6252d9eab2509804d08b8eed0547e231cb68..71459941ea55d6964220fbaece89d922d6e1992b 100644 (file)
@@ -24,7 +24,7 @@
 //config:      default y
 //config:      depends on LOGREAD
 //config:      help
-//config:        'logread' ouput to slow serial terminals can have
+//config:        'logread' output to slow serial terminals can have
 //config:        side effects on syslog because of the semaphore.
 //config:        This option make logread to double buffer copy
 //config:        from circular buffer, minimizing semaphore
@@ -159,7 +159,7 @@ int logread_main(int argc UNUSED_PARAM, char **argv)
                                        cur, shbuf_tail, shbuf_size);
 
                if (!(follow & 1)) { /* not -f */
-                       /* if -F, "convert" it to -f, so that we dont
+                       /* if -F, "convert" it to -f, so that we don't
                         * dump the entire buffer on each iteration
                         */
                        follow >>= 1;
index e9d8da0fc8d6f49d8f3ced9e399c4f04b7a68ff0..27b52f6c4b025e1c0b773bd184f531570bfdbb50 100755 (executable)
@@ -29,7 +29,7 @@ pwd=`$pwd`
 testing "readlink -f on a file" "readlink -f ./$TESTFILE" "$pwd/$TESTFILE\n" "" ""
 testing "readlink -f on a link" "readlink -f ./$TESTLINK" "$pwd/$TESTFILE\n" "" ""
 testing "readlink -f on an invalid link" "readlink -f ./$FAILLINK" "" "" ""
-testing "readlink -f on a wierd dir" "readlink -f $TESTDIR/../$TESTFILE" "$pwd/$TESTFILE\n" "" ""
+testing "readlink -f on a weird dir" "readlink -f $TESTDIR/../$TESTFILE" "$pwd/$TESTFILE\n" "" ""
 
 
 # clean up
index af02608f035d58eb1f2f7162c2c5aeae403f0638..8196619b0bdad465c2e58530684ec5a4d31b045d 100644 (file)
@@ -35,7 +35,7 @@
 #include "libbb.h"
 #include "unicode.h"
 
-/* We often use "unsigned" intead of "int", it's easier to div on most CPUs */
+/* We often use "unsigned" instead of "int", it's easier to div on most CPUs */
 
 #define        THURSDAY                4               /* for reformation */
 #define        SATURDAY                6               /* 1 Jan 1 was a Saturday */
index d65011a71e219d82fb42e2b9a3e8ade0c62e0311..8cb908cb3363ce78db944b414e8d748c864bb2d4 100644 (file)
@@ -167,7 +167,7 @@ static void from_sys_clock(const char **pp_rtcname, int utc)
  * On x86, even though code does set hw clock within <1ms of exact
  * whole seconds, apparently hw clock (at least on some machines)
  * doesn't reset internal fractional seconds to 0,
- * making all this a pointless excercise.
+ * making all this a pointless exercise.
  */
        /* If we see that we are N usec away from whole second,
         * we'll sleep for N-ADJ usecs. ADJ corrects for the fact
index 64213c68052da96c92da37eede12cc6d1c737302..4da3394a8dd85a08a043930acdaf9df156372678 100644 (file)
@@ -141,7 +141,7 @@ int renice_main(int argc UNUSED_PARAM, char **argv)
                retval = EXIT_FAILURE;
        }
 
-       /* No need to check for errors outputing to stderr since, if it
+       /* No need to check for errors outputting to stderr since, if it
         * was used, the HAD_ERROR label was reached and retval was set. */
 
        return retval;
index aaee35a3e4b7f20dd1c8b782ad91b2c30d573920..f18e8a5ce398f560fa0433bb7a173accce28e057 100644 (file)
@@ -183,7 +183,7 @@ So there's a step that needs to be sort of atomic but can't be as a shell
 script.  (You can work around this with static linking or very carefully laid
 out paths and sequencing, but it's brittle, ugly, and non-obvious.)
 
-2) The "find | rm" bit will acually delete everything because the mount points
+2) The "find | rm" bit will actually delete everything because the mount points
 still show up (even if their contents don't), and rm -rf will then happily zap
 that.  So the first line is an oversimplification of what you need to do _not_
 to descend into other filesystems and delete their contents.
index 613c80c863cad4c3d9fe8464af4727fb2bbbc9f6..fa5dccee7077905e08df91df5b947aaa44370d8d 100644 (file)
@@ -137,7 +137,7 @@ anchor:
        if (type != 2) /* TAG_ID_AVDP */
                goto found;
 
-       /* get desriptor list address and block count */
+       /* get descriptor list address and block count */
        count = le32_to_cpu(vd->type.anchor.length) / bs;
        loc = le32_to_cpu(vd->type.anchor.location);
        dbg("0x%x descriptors starting at logical secor 0x%x", count, loc);