summaryrefslogtreecommitdiff
path: root/sbin/md5
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2015-03-26 22:34:27 +0000
committerXin LI <delphij@FreeBSD.org>2015-03-26 22:34:27 +0000
commit16945d8950d3257e4fea54b447b6d0a4b03c3f4d (patch)
tree042889f0cecede73a5c1b19fedb4144147bb743f /sbin/md5
parentd59909c3e2f4fbe0fcdbc1de1f205f568409c527 (diff)
downloadsrc-test-16945d8950d3257e4fea54b447b6d0a4b03c3f4d.tar.gz
src-test-16945d8950d3257e4fea54b447b6d0a4b03c3f4d.zip
Notes
Diffstat (limited to 'sbin/md5')
-rw-r--r--sbin/md5/md5.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c
index 823d09b2c08a4..0c03c52135315 100644
--- a/sbin/md5/md5.c
+++ b/sbin/md5/md5.c
@@ -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);