summaryrefslogtreecommitdiff
path: root/regress/sys/crypto/auth/md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'regress/sys/crypto/auth/md5.c')
-rw-r--r--regress/sys/crypto/auth/md5.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/sys/crypto/auth/md5.c b/regress/sys/crypto/auth/md5.c
index 8de6b7f8a77..83207b64d83 100644
--- a/regress/sys/crypto/auth/md5.c
+++ b/regress/sys/crypto/auth/md5.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: md5.c,v 1.3 2002/06/23 21:46:10 wcobb Exp $ */
+/* $OpenBSD: md5.c,v 1.4 2003/07/31 21:48:07 deraadt Exp $ */
/*
* Copyright (c) 2002 Markus Friedl. All rights reserverd.
@@ -37,7 +37,7 @@
#define MD5LEN 16
-char *
+static char *
sysmd5(const char *s, size_t len)
{
static char md[MD5LEN*2 + 1];
@@ -94,7 +94,7 @@ err:
return (NULL);
}
-int
+static int
getallowsoft(void)
{
int mib[2], old;
@@ -110,7 +110,7 @@ getallowsoft(void)
return old;
}
-void
+static void
setallowsoft(int new)
{
int mib[2], old;