diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-16 04:09:25 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-16 04:09:25 +0000 |
commit | f45c4f41b792e4b7c52eaf21b9540112887e861b (patch) | |
tree | e5f35073f61b6178d49d02821676894f32b7a32f /libbb | |
parent | 57c899e4c2be4d0bddeaaca9c34ea0f484f92ad8 (diff) |
whitespace and comment fixes, no code changes
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/pw_encrypt.c | 4 | ||||
-rw-r--r-- | libbb/pw_encrypt_des.c | 6 |
2 files changed, 3 insertions, 7 deletions
diff --git a/libbb/pw_encrypt.c b/libbb/pw_encrypt.c index c1e927e23..73631865c 100644 --- a/libbb/pw_encrypt.c +++ b/libbb/pw_encrypt.c @@ -14,10 +14,6 @@ /* * 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"; diff --git a/libbb/pw_encrypt_des.c b/libbb/pw_encrypt_des.c index a13e1a5df..cd19a63f7 100644 --- a/libbb/pw_encrypt_des.c +++ b/libbb/pw_encrypt_des.c @@ -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 |