diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2008-08-12 21:28:30 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2008-08-12 21:28:30 +0000 |
| commit | 3cd15d775374ff6b83c75e6c675cc62e8abfb1f5 (patch) | |
| tree | 75086c15aa42d0bab0d835149d218e19029b8de1 /src/lib/crypto/md5 | |
| parent | b57f5c027a6a5ed097ba9fc005aa4b4b628ecbbe (diff) | |
| download | krb5-3cd15d775374ff6b83c75e6c675cc62e8abfb1f5.tar.gz krb5-3cd15d775374ff6b83c75e6c675cc62e8abfb1f5.tar.xz krb5-3cd15d775374ff6b83c75e6c675cc62e8abfb1f5.zip | |
If CONFIG_SMALL_NO_CRYPTO is defined, turn off CONFIG_SMALL changes for crypto code only
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20648 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/crypto/md5')
| -rw-r--r-- | src/lib/crypto/md5/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/crypto/md5/md5.c b/src/lib/crypto/md5/md5.c index da8aca451..e548dbc3a 100644 --- a/src/lib/crypto/md5/md5.c +++ b/src/lib/crypto/md5/md5.c @@ -192,7 +192,7 @@ static void Transform (krb5_ui_4 *buf, krb5_ui_4 *in) { register krb5_ui_4 a = buf[0], b = buf[1], c = buf[2], d = buf[3]; -#ifdef CONFIG_SMALL +#if defined(CONFIG_SMALL) && !defined(CONFIG_SMALL_NO_CRYPTO) int i; #define ROTATE { krb5_ui_4 temp; temp = d, d = c, c = b, b = a, a = temp; } |
