diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-21 15:02:04 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2002-11-21 15:02:04 +0000 |
commit | 56726a996aaca93f136a3eb7f8fe67c7f97401fa (patch) | |
tree | b7a4b9cec2ccd5b19eb4492de5ddafade3dae6f6 /usr.bin | |
parent | 8bdc8025b53813c8130e3e4f7ebeae5c61bd2cea (diff) |
typo in error message; Tor Houghton
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/passwd/pwd_gensalt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/passwd/pwd_gensalt.c b/usr.bin/passwd/pwd_gensalt.c index ade7cbfe66c..baacc130b81 100644 --- a/usr.bin/passwd/pwd_gensalt.c +++ b/usr.bin/passwd/pwd_gensalt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pwd_gensalt.c,v 1.14 2002/06/28 22:28:17 deraadt Exp $ */ +/* $OpenBSD: pwd_gensalt.c,v 1.15 2002/11/21 15:02:03 henning Exp $ */ /* * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> * All rights reserved. @@ -130,7 +130,7 @@ pwd_gensalt(char *salt, int saltlen, struct passwd *pwd, login_cap_t *lc, char t strlcpy(salt, bcrypt_gensalt(rounds), saltlen); } else { strlcpy(salt, ":", saltlen); - warnx("Unkown option %s.", now); + warnx("Unknown option %s.", now); } return 1; } |