diff options
Diffstat (limited to 'src/lib/libc/crypt/bcrypt.c')
-rw-r--r-- | src/lib/libc/crypt/bcrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/bcrypt.c b/src/lib/libc/crypt/bcrypt.c index bea35e789a..9e55110dd6 100644 --- a/src/lib/libc/crypt/bcrypt.c +++ b/src/lib/libc/crypt/bcrypt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bcrypt.c,v 1.9 1997/07/25 20:29:59 mickey Exp $ */ | 1 | /* $OpenBSD: bcrypt.c,v 1.10 1997/09/10 23:15:42 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> | 4 | * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
@@ -218,7 +218,7 @@ bcrypt(key, salt) | |||
218 | 218 | ||
219 | /* Check for minor versions */ | 219 | /* Check for minor versions */ |
220 | if (salt[1] != '$') { | 220 | if (salt[1] != '$') { |
221 | switch(salt[1]) { | 221 | switch (salt[1]) { |
222 | case 'a': | 222 | case 'a': |
223 | /* 'ab' should not yield the same as 'abab' */ | 223 | /* 'ab' should not yield the same as 'abab' */ |
224 | minor = salt[1]; | 224 | minor = salt[1]; |