diff options
author | Alexander Hall <halex@cvs.openbsd.org> | 2010-01-08 16:38:23 +0000 |
---|---|---|
committer | Alexander Hall <halex@cvs.openbsd.org> | 2010-01-08 16:38:23 +0000 |
commit | eb0398ca63772a6ca571c5ef6c0f08dcee53a686 (patch) | |
tree | d5ee72f2e7e5866d2e4109d2bd2acc8eb7d745df /sbin | |
parent | 3c78db00dd77ca78b68692e3ad1fe058f33c4347 (diff) |
"Too less" => "Too few"
ok marco@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/bioctl/bioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/bioctl/bioctl.c b/sbin/bioctl/bioctl.c index be0c52b322d..50f6fbe2655 100644 --- a/sbin/bioctl/bioctl.c +++ b/sbin/bioctl/bioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bioctl.c,v 1.90 2010/01/03 01:41:47 nicm Exp $ */ +/* $OpenBSD: bioctl.c,v 1.91 2010/01/08 16:38:22 halex Exp $ */ /* * Copyright (c) 2004, 2005 Marco Peereboom @@ -1037,7 +1037,7 @@ derive_key_pkcs(int rounds, u_int8_t *key, size_t keysz, u_int8_t *salt, if (!salt) errx(1, "Invalid salt"); if (rounds < 1000) - errx(1, "Too less rounds: %d", rounds); + errx(1, "Too few rounds: %d", rounds); /* get passphrase */ if (password && verify) |