diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-01 09:13:26 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-01 09:13:26 +0000 |
commit | 966ec7c067d7a2df5232a69c8d3d2e777347a62d (patch) | |
tree | f2a42afd8064170c72634d65f7c4a3cf580f9b01 /libbb | |
parent | 31c65f24560f6980e3949a02f0b5e5e45c1a365d (diff) | |
download | busybox-w32-966ec7c067d7a2df5232a69c8d3d2e777347a62d.tar.gz busybox-w32-966ec7c067d7a2df5232a69c8d3d2e777347a62d.tar.bz2 busybox-w32-966ec7c067d7a2df5232a69c8d3d2e777347a62d.zip |
#if CONFIG_xxx -> #if ENABLE_xxx
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/md5.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/libbb/md5.c b/libbb/md5.c index 132efdf93..e672559cf 100644 --- a/libbb/md5.c +++ b/libbb/md5.c | |||
@@ -13,21 +13,13 @@ | |||
13 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | 13 | * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. |
14 | */ | 14 | */ |
15 | 15 | ||
16 | #include <fcntl.h> | ||
17 | #include <limits.h> | ||
18 | #include <stdio.h> | ||
19 | #include <stdint.h> | ||
20 | #include <stdlib.h> | ||
21 | #include <string.h> | ||
22 | #include <unistd.h> | ||
23 | |||
24 | #include "libbb.h" | 16 | #include "libbb.h" |
25 | 17 | ||
26 | # if CONFIG_MD5_SIZE_VS_SPEED < 0 || CONFIG_MD5_SIZE_VS_SPEED > 3 | 18 | #if CONFIG_MD5_SIZE_VS_SPEED < 0 || CONFIG_MD5_SIZE_VS_SPEED > 3 |
27 | # define MD5_SIZE_VS_SPEED 2 | 19 | # define MD5_SIZE_VS_SPEED 2 |
28 | # else | 20 | #else |
29 | # define MD5_SIZE_VS_SPEED CONFIG_MD5_SIZE_VS_SPEED | 21 | # define MD5_SIZE_VS_SPEED CONFIG_MD5_SIZE_VS_SPEED |
30 | # endif | 22 | #endif |
31 | 23 | ||
32 | /* Initialize structure containing state of computation. | 24 | /* Initialize structure containing state of computation. |
33 | * (RFC 1321, 3.3: Step 3) | 25 | * (RFC 1321, 3.3: Step 3) |