summaryrefslogtreecommitdiff
path: root/src/lib/libc/crypt/bcrypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/crypt/bcrypt.c')
-rw-r--r--src/lib/libc/crypt/bcrypt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/bcrypt.c b/src/lib/libc/crypt/bcrypt.c
index 42418767ee..bea35e789a 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.8 1997/07/23 20:58:26 kstailey Exp $ */ 1/* $OpenBSD: bcrypt.c,v 1.9 1997/07/25 20:29:59 mickey 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>
@@ -97,7 +97,7 @@ const static u_int8_t index_64[128] =
97}; 97};
98#define CHAR64(c) ( (c) > 127 ? 255 : index_64[(c)]) 98#define CHAR64(c) ( (c) > 127 ? 255 : index_64[(c)])
99 99
100#if __STDC__ 100#ifdef __STDC__
101static void 101static void
102decode_base64(u_int8_t *buffer, u_int16_t len, u_int8_t *data) 102decode_base64(u_int8_t *buffer, u_int16_t len, u_int8_t *data)
103#else 103#else