diff options
author | Holger Lubitz <hal@duncan.ol.sub.de> | 2007-07-27 21:36:16 +0200 |
---|---|---|
committer | Holger Lubitz <hal@duncan.ol.sub.de> | 2007-07-27 21:36:16 +0200 |
commit | 29134e35dcfe2512e3733da6baf4fc03d1258a4b (patch) | |
tree | c7c217ba9a6e39f7842b3d9be99d659783e4bf6f /src/crypto/md5.c | |
parent | 97aade0d1f39638eab55e3502e3f20997fbed2bd (diff) | |
download | ipxe-29134e35dcfe2512e3733da6baf4fc03d1258a4b.tar.gz |
make md5_steps static
Diffstat (limited to 'src/crypto/md5.c')
-rw-r--r-- | src/crypto/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/md5.c b/src/crypto/md5.c index 09378e20f..1fed24fcd 100644 --- a/src/crypto/md5.c +++ b/src/crypto/md5.c @@ -54,7 +54,7 @@ static u32 __md5step f4(u32 b, u32 c, u32 d) return ( c ^ ( b | ~d ) ); } -struct md5_step md5_steps[4] = { +static struct md5_step md5_steps[4] = { { .f = f1, .coefficient = 1, |