]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream commit
authorDamien Miller <djm@mindrot.org>
Tue, 5 May 2015 09:09:46 +0000 (19:09 +1000)
committerDamien Miller <djm@mindrot.org>
Sun, 10 May 2015 01:57:23 +0000 (11:57 +1000)
   - djm@cvs.openbsd.org 2014/12/30 01:41:43
     [bcrypt_pbkdf.c]
     typo in comment: ouput => output

openbsd-compat/bcrypt_pbkdf.c

index 16912575afe824889d49f200ed70d560d6f80ea4..f412829b60b437233370240462135142e1cc24f4 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bcrypt_pbkdf.c,v 1.9 2014/07/13 21:21:25 tedu Exp $ */
+/* $OpenBSD: bcrypt_pbkdf.c,v 1.10 2014/12/30 01:41:43 djm Exp $ */
 /*
  * Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>
  *
@@ -156,7 +156,7 @@ bcrypt_pbkdf(const char *pass, size_t passlen, const u_int8_t *salt, size_t salt
                }
 
                /*
-                * pbkdf2 deviation: ouput the key material non-linearly.
+                * pbkdf2 deviation: output the key material non-linearly.
                 */
                amt = MIN(amt, keylen);
                for (i = 0; i < amt; i++) {