diff options
author | deraadt <> | 1997-09-10 23:15:43 +0000 |
---|---|---|
committer | deraadt <> | 1997-09-10 23:15:43 +0000 |
commit | 29ad9bb3ca5e52546607800b37a97d2b1ce8099c (patch) | |
tree | 5fb60abfab6910a13b4be5cd76c76f41fbf2d932 /src/lib/libc/crypt/bcrypt.c | |
parent | 4481b74b5b79e4df97de9c70538600c44ad30874 (diff) | |
download | openbsd-29ad9bb3ca5e52546607800b37a97d2b1ce8099c.tar.gz openbsd-29ad9bb3ca5e52546607800b37a97d2b1ce8099c.tar.bz2 openbsd-29ad9bb3ca5e52546607800b37a97d2b1ce8099c.zip |
indentation cleanup
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]; |