summaryrefslogtreecommitdiff
path: root/lib/libc/crypt/bcrypt.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-09-10 23:15:44 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-09-10 23:15:44 +0000
commit29d6932d1d57cae5e936bd0fd4dbc30db93be71c (patch)
tree10983ef01693953d00e6b999cc99a5928ea4590a /lib/libc/crypt/bcrypt.c
parent0a61763bce8f6ba7e4aa80526a73b0eb9330f856 (diff)
indentation cleanup
Diffstat (limited to 'lib/libc/crypt/bcrypt.c')
-rw-r--r--lib/libc/crypt/bcrypt.c4
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];