diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-01 09:13:26 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-11-01 09:13:26 +0000 |
commit | 3c5559e22b485a9bb371a70e3b123e223d7899f0 (patch) | |
tree | f2a42afd8064170c72634d65f7c4a3cf580f9b01 /libbb | |
parent | 5a8e1321aeb2da6242a62448cdf8ed17093f0ae0 (diff) | |
download | busybox-w32-3c5559e22b485a9bb371a70e3b123e223d7899f0.tar.gz busybox-w32-3c5559e22b485a9bb371a70e3b123e223d7899f0.tar.bz2 busybox-w32-3c5559e22b485a9bb371a70e3b123e223d7899f0.zip |
#if CONFIG_xxx -> #if ENABLE_xxx
git-svn-id: svn://busybox.net/trunk/busybox@16483 69ca8d6d-28ef-0310-b511-8ec308f3f277
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) |