From 1f020b178664857b0e107778d04fb971a58e6230 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 23 Jul 2008 11:23:36 +0000 Subject: - trim any trailing whitespace --- libcrypt/des.c | 8 ++++---- libcrypt/md5.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'libcrypt') diff --git a/libcrypt/des.c b/libcrypt/des.c index 502dc2819..eb1e13fec 100644 --- a/libcrypt/des.c +++ b/libcrypt/des.c @@ -82,8 +82,8 @@ static u_int32_t old_salt; static u_int32_t old_rawkey0, old_rawkey1; -/* 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. */ static u_char init_perm[64], final_perm[64]; static u_char m_sbox[4][4096]; @@ -195,7 +195,7 @@ static const u_int32_t bits32[32] = static const u_char bits8[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 }; -static int +static int ascii_to_bin(char ch) { if (ch > 'z') @@ -699,7 +699,7 @@ char *__des_crypt(const unsigned char *key, const unsigned char *setting) */ output[9] = '\0'; p = (u_char *)output + strlen(output); - } else + } else #endif { /* diff --git a/libcrypt/md5.c b/libcrypt/md5.c index f7ddc77cc..ab5548c0a 100644 --- a/libcrypt/md5.c +++ b/libcrypt/md5.c @@ -188,7 +188,7 @@ static void __md5_Init (struct MD5Context *context) context->state[3] = 0x10325476; } -/* +/* * MD5 block update operation. Continues an MD5 message-digest * operation, processing another message block, and updating the * context. -- cgit v1.2.3