diff options
author | 1997-09-10 23:15:42 +0000 | |
---|---|---|
committer | 1997-09-10 23:15:42 +0000 | |
commit | 8f9b423b7c10e2d6b2b5b965b0804073cf23bebb (patch) | |
tree | 6cf5041b9f70f210184f330113f20a65c559a194 /lib/libc/crypt/bcrypt.c | |
parent | Build a small version of ftp for alpha install floppy, shave a few bytes. (diff) | |
download | wireguard-openbsd-8f9b423b7c10e2d6b2b5b965b0804073cf23bebb.tar.xz wireguard-openbsd-8f9b423b7c10e2d6b2b5b965b0804073cf23bebb.zip |
indentation cleanup
Diffstat (limited to 'lib/libc/crypt/bcrypt.c')
-rw-r--r-- | lib/libc/crypt/bcrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/crypt/bcrypt.c b/lib/libc/crypt/bcrypt.c index bea35e789af..9e55110dd64 100644 --- a/lib/libc/crypt/bcrypt.c +++ b/lib/libc/crypt/bcrypt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcrypt.c,v 1.9 1997/07/25 20:29:59 mickey Exp $ */ +/* $OpenBSD: bcrypt.c,v 1.10 1997/09/10 23:15:42 deraadt Exp $ */ /* * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> @@ -218,7 +218,7 @@ bcrypt(key, salt) /* Check for minor versions */ if (salt[1] != '$') { - switch(salt[1]) { + switch (salt[1]) { case 'a': /* 'ab' should not yield the same as 'abab' */ minor = salt[1]; |