From: Holger Lubitz Date: Fri, 27 Jul 2007 19:36:16 +0000 (+0200) Subject: make md5_steps static X-Git-Tag: v0.9.3~159^2~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=29134e35dcfe2512e3733da6baf4fc03d1258a4b;p=thirdparty%2Fipxe.git make md5_steps static --- 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,