diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2014-12-30 01:41:44 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2014-12-30 01:41:44 +0000 |
commit | ed588709c43ab63f8df439015f2978841cd1c786 (patch) | |
tree | 8985b830a147269225e9690b23eff1110221d364 /lib | |
parent | f41bf5c62cc2fd8df3ba6809c6ebc068634a7997 (diff) |
typo in comment: ouput => output
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libutil/bcrypt_pbkdf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/bcrypt_pbkdf.c b/lib/libutil/bcrypt_pbkdf.c index 839773b3a64..9cecf9a780a 100644 --- a/lib/libutil/bcrypt_pbkdf.c +++ b/lib/libutil/bcrypt_pbkdf.c @@ -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> * @@ -147,7 +147,7 @@ bcrypt_pbkdf(const char *pass, size_t passlen, const uint8_t *salt, size_t saltl } /* - * 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++) { |