diff options
author | deraadt <> | 1996-07-02 23:05:38 +0000 |
---|---|---|
committer | deraadt <> | 1996-07-02 23:05:38 +0000 |
commit | 487f172e43f88a67b7aae65cdb7057f7b56349f2 (patch) | |
tree | ac07886b5f289ef7aacc6d123885f12048b1fe80 | |
parent | 2f6fda0b2df23a880ad55d26f693711bc8cbd95e (diff) | |
download | openbsd-487f172e43f88a67b7aae65cdb7057f7b56349f2.tar.gz openbsd-487f172e43f88a67b7aae65cdb7057f7b56349f2.tar.bz2 openbsd-487f172e43f88a67b7aae65cdb7057f7b56349f2.zip |
pretty the comment
Diffstat (limited to '')
-rw-r--r-- | src/lib/libc/crypt/md5crypt.c | 16 |
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) |
14 | static char rcsid[] = "$OpenBSD: md5crypt.c,v 1.2 1996/06/03 22:20:37 niklas Exp $"; | 14 | static 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]; |