whitespace and comment fixes, no code changes
authorDenis Vlasenko <vda.linux@googlemail.com>
Mon, 16 Jun 2008 04:09:25 +0000 (04:09 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Mon, 16 Jun 2008 04:09:25 +0000 (04:09 -0000)
docs/busybox.net/news.html
libbb/pw_encrypt.c
libbb/pw_encrypt_des.c
loginutils/Config.in
modutils/Config.in
modutils/depmod.c
modutils/modprobe.c
networking/arp.c
util-linux/fdisk_osf.c

index f13901f04fe74cd066472b43a4cdff11fb5ebf38..47e61f21a8fcff8772b58bc2af6950f6334e0840 100644 (file)
@@ -191,7 +191,7 @@ iproute_list_or_flush   3680 readhere                2308
        <li>tail: fix "tail -c 20 /dev/huge_disk" (was taking ages)
        <li>tar: compat: handle tarballs with only one zero block at the end
        <li>tar: autodetection of gz/bz2 compressed tarballs. Closes bug 992
-       <li>tar: real support for -p. By Natanael Copa &lt;natanael.copa at gmail.com&gt; 
+       <li>tar: real support for -p. By Natanael Copa &lt;natanael.copa at gmail.com&gt;
        <li>tcpudp: narrow down time window where we have no wildcard socket
        <li>telnetd: use login always, not "sometimes login, sometimes shell"
        <li>test: fix mishandling of "test ! arg1 op arg2 more args"
index c1e927e2373ee027860bd206a6fa2404a6ad7344..73631865c6ad79e8ceee0a062ac5f3a8a85a6bd8 100644 (file)
 /*
  * DES and MD5 crypt implementations are taken from uclibc.
  * They were modified to not use static buffers.
- * Comparison with uclibc (before uclibc had 70k staic buffers reinstated):
- *   text    data     bss     dec     hex filename
- * 759909     604    6684  767197   bb4dd busybox_old
- * 759579     604    6684  766867   bb393 busybox_unstripped
  */
 /* Common for them */
 static const uint8_t ascii64[] = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
index a13e1a5dfbc60bb172c56b2d911d2e8584a1c05b..cd19a63f78c846f91700fc8305b3c735cc9e3137 100644 (file)
@@ -201,7 +201,7 @@ static const uint32_t bits32[32] =
 static const uint8_t bits8[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
 
 
-static int 
+static int
 ascii_to_bin(char ch)
 {
        if (ch > 'z')
@@ -220,8 +220,8 @@ ascii_to_bin(char ch)
 }
 
 
-/* Static stuff that stays resident and doesn't change after 
- * being initialized, and therefore doesn't need to be made 
+/* Static stuff that stays resident and doesn't change after
+ * being initialized, and therefore doesn't need to be made
  * reentrant. */
 struct const_des_ctx {
 #if USE_ip_mask
index c3c8dd513dbedda50cf757af9836942b13ba6998..4ca1c25977c11c26c1828322463784026648b1e6 100644 (file)
@@ -71,8 +71,8 @@ config USE_BB_CRYPT
          DES encryption/decryption.
 
          For busybox, having large static buffers is undesirable,
-         especially on NOMMU machines. Busybox also doesn't
-         need DES encryption/decryption and can do with smaller code.
+         especially on NOMMU machines. Busybox also doesn't need
+         DES encryption/decryption and can do with smaller code.
 
          If you enable this option, it will add about 4.8k of code
          if you are building dynamically linked executable.
index c0dff1a4c3faa1c57e658aac2fed3c4831d39a35..2b0bcdd6ea28eecacd73f1562a8a66ba3fe90365 100644 (file)
@@ -153,10 +153,10 @@ config FEATURE_MODPROBE_BLACKLIST
        default n
        depends on MODPROBE && FEATURE_2_6_MODULES
        help
-         Say 'y' here to enable support for the 'blacklist' command in 
-         modprobe.conf. This prevents the alias resolver to resolve 
-         blacklisted modules. This is useful if you want to prevent your 
-         hardware autodetection scripts to load modules like evdev, frame 
+         Say 'y' here to enable support for the 'blacklist' command in
+         modprobe.conf. This prevents the alias resolver to resolve
+         blacklisted modules. This is useful if you want to prevent your
+         hardware autodetection scripts to load modules like evdev, frame
          buffer drivers etc.
 
 comment "Options common to multiple modutils"
index 733cd95bf04fc963c270c6a2672811c7e100546d..4998d641d1518ff01dd9f1bfaa70cc53d1191454 100644 (file)
@@ -181,7 +181,7 @@ int depmod_main(int ATTRIBUTE_UNUSED argc, char **argv)
                        char *shortname = llist_pop(&old_deps);
 
                        while (all) {
-                               char *nam = 
+                               char *nam =
                                        xstrdup(bb_get_last_path_component_nostrip(all->name));
                                char *tmp = strrstr(nam, ".ko");
 
index db946bb2e25ab0e74cd7fb6e726dea897c28e028..84a2d76867d78665ef134ce32f3eeb00a7a0ad2f 100644 (file)
@@ -232,10 +232,10 @@ static char *parse_command_string(char *src, char **dst)
 #endif /* ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS */
 
 static int is_conf_command(char *buffer, const char *command)
-{ 
+{
        int len = strlen(command);
        return ((strstr(buffer, command) == buffer) &&
-                       isspace(buffer[len])); 
+                       isspace(buffer[len]));
 }
 
 /*
@@ -325,7 +325,7 @@ static void include_conf(struct dep_t **first, struct dep_t **current, char *buf
                                include_conf(first, current, buffer, buflen, fdi);
                                close(fdi);
                        }
-               } else if (ENABLE_FEATURE_MODPROBE_BLACKLIST && 
+               } else if (ENABLE_FEATURE_MODPROBE_BLACKLIST &&
                                (is_conf_command(buffer, "blacklist"))) {
                        char *mod;
                        struct dep_t *dt;
index f85a9102254f682dff661bbef22b0c66465ab2e3..ae1bb1a2e3740a37e8002bd04921618ff4aee238 100644 (file)
@@ -314,7 +314,7 @@ arp_disp(const char *name, char *ip, int type, int arp_flags,
                 char *hwa, char *mask, char *dev)
 {
        static const int arp_masks[] = {
-               ATF_PERM, ATF_PUBL, 
+               ATF_PERM, ATF_PUBL,
 #ifdef HAVE_ATF_MAGIC
                ATF_MAGIC,
 #endif
index 30c42553b7841121c2ce6d9ada9f10cc415b6991..24f240af3de0308541f89cb022bae810f981e0c8 100644 (file)
@@ -516,7 +516,7 @@ xbsd_print_disklabel(int show_all)
                printf("disk: %.*s\n", (int) sizeof(lp->d_typename), lp->d_typename);
                printf("label: %.*s\n", (int) sizeof(lp->d_packname), lp->d_packname);
                printf("flags: ");
-               print_flags_separated(d_masks, "removable\0""ecc\0""badsect\0", lp->d_flags, " "); 
+               print_flags_separated(d_masks, "removable\0""ecc\0""badsect\0", lp->d_flags, " ");
                bb_putchar('\n');
                /* On various machines the fields of *lp are short/int/long */
                /* In order to avoid problems, we cast them all to long. */