From: Holger Lubitz Date: Fri, 27 Jul 2007 19:36:16 +0000 (+0200) Subject: make md5_steps static X-Git-Url: http://git.etherboot.org/people/indolent/gpxe.git/.git/commitdiff_plain/29134e35dcfe2512e3733da6baf4fc03d1258a4b make md5_steps static --- diff --git a/src/crypto/md5.c b/src/crypto/md5.c index 09378e20..1fed24fc 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,