- Correct type for checkAgainst.

- Staticify flags that are not used outside the file scope.

PR:		bin/193471
Submitted by:	Robert Sprowson <webpages sprow.co.uk>
MFC after:	2 weeks
This commit is contained in:
Xin LI 2015-03-26 22:34:27 +00:00
parent d59909c3e2
commit 16945d8950
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=280716

View file

@ -42,11 +42,11 @@ __FBSDID("$FreeBSD$");
#define TEST_BLOCK_COUNT 100000 #define TEST_BLOCK_COUNT 100000
#define MDTESTCOUNT 8 #define MDTESTCOUNT 8
int qflag; static int qflag;
int rflag; static int rflag;
int sflag; static int sflag;
unsigned char* checkAgainst; static char* checkAgainst;
int checksFailed; static int checksFailed;
typedef void (DIGEST_Init)(void *); typedef void (DIGEST_Init)(void *);
typedef void (DIGEST_Update)(void *, const unsigned char *, size_t); typedef void (DIGEST_Update)(void *, const unsigned char *, size_t);