- 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 MDTESTCOUNT 8
int qflag;
int rflag;
int sflag;
unsigned char* checkAgainst;
int checksFailed;
static int qflag;
static int rflag;
static int sflag;
static char* checkAgainst;
static int checksFailed;
typedef void (DIGEST_Init)(void *);
typedef void (DIGEST_Update)(void *, const unsigned char *, size_t);