summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libc/crypt/md5crypt.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/libc/crypt/md5crypt.c b/src/lib/libc/crypt/md5crypt.c
index f17a8d374c..0d661cb754 100644
--- a/src/lib/libc/crypt/md5crypt.c
+++ b/src/lib/libc/crypt/md5crypt.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: md5crypt.c,v 1.2 1996/06/03 22:20:37 niklas Exp $ */ 1/* $OpenBSD: md5crypt.c,v 1.3 1996/07/02 23:05:38 deraadt Exp $ */
2 2
3/* 3/*
4 * ---------------------------------------------------------------------------- 4 * ----------------------------------------------------------------------------
@@ -11,7 +11,7 @@
11 */ 11 */
12 12
13#if defined(LIBC_SCCS) && !defined(lint) 13#if defined(LIBC_SCCS) && !defined(lint)
14static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.2 1996/06/03 22:20:37 niklas Exp $"; 14static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.3 1996/07/02 23:05:38 deraadt Exp $";
15#endif /* LIBC_SCCS and not lint */ 15#endif /* LIBC_SCCS and not lint */
16 16
17#include <unistd.h> 17#include <unistd.h>
@@ -44,12 +44,12 @@ md5crypt(pw, salt)
44 register const char *pw; 44 register const char *pw;
45 register const char *salt; 45 register const char *salt;
46{ 46{
47 static char *magic = "$1$"; /* 47 /*
48 * This string is magic for 48 * This string is magic for this algorithm. Having
49 * this algorithm. Having 49 * it this way, we can get get better later on
50 * it this way, we can get 50 */
51 * get better later on 51 static char *magic = "$1$";
52 */ 52
53 static char passwd[120], *p; 53 static char passwd[120], *p;
54 static const char *sp,*ep; 54 static const char *sp,*ep;
55 unsigned char final[16]; 55 unsigned char final[16];