commit | 18e9f3282bd4ca4bbbd6666c5e1c56f3589324f8 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Thu Jan 23 16:08:06 2014 +0100 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Thu Jan 23 16:08:38 2014 +0100 |
tree | 1ec4ce019e211a3fc015bebee5dee948879d01f5 | |
parent | bf98c3dd1181c6e897b12f8846bb0a5eb62360bc [diff] [blame] |
Added missing static to md_info_by_size() in ecdsa.c
diff --git a/library/ecdsa.c b/library/ecdsa.c index b4ac18d..9f697a1 100644 --- a/library/ecdsa.c +++ b/library/ecdsa.c
@@ -140,7 +140,7 @@ * * Argument is the minimum size in bytes of the MD output. */ -const md_info_t *md_info_by_size( int min_size ) +static const md_info_t *md_info_by_size( int min_size ) { const md_info_t *md_cur, *md_picked = NULL; const int *md_alg;