summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openbsd-compat/bcrypt_pbkdf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/bcrypt_pbkdf.c b/openbsd-compat/bcrypt_pbkdf.c
index 16912575a..f412829b6 100644
--- a/openbsd-compat/bcrypt_pbkdf.c
+++ b/openbsd-compat/bcrypt_pbkdf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bcrypt_pbkdf.c,v 1.9 2014/07/13 21:21:25 tedu Exp $ */ 1/* $OpenBSD: bcrypt_pbkdf.c,v 1.10 2014/12/30 01:41:43 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2013 Ted Unangst <tedu@openbsd.org> 3 * Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
4 * 4 *
@@ -156,7 +156,7 @@ bcrypt_pbkdf(const char *pass, size_t passlen, const u_int8_t *salt, size_t salt
156 } 156 }
157 157
158 /* 158 /*
159 * pbkdf2 deviation: ouput the key material non-linearly. 159 * pbkdf2 deviation: output the key material non-linearly.
160 */ 160 */
161 amt = MIN(amt, keylen); 161 amt = MIN(amt, keylen);
162 for (i = 0; i < amt; i++) { 162 for (i = 0; i < amt; i++) {