diff options
author | 2002-11-21 15:02:03 +0000 | |
---|---|---|
committer | 2002-11-21 15:02:03 +0000 | |
commit | b6cc9d6e83993d4da348e1cdd8e824bc22a524b0 (patch) | |
tree | 8e5be66c369e02afca783357da9b8551d18af506 | |
parent | Add 'rawkey' to FEATURES. (diff) | |
download | wireguard-openbsd-b6cc9d6e83993d4da348e1cdd8e824bc22a524b0.tar.xz wireguard-openbsd-b6cc9d6e83993d4da348e1cdd8e824bc22a524b0.zip |
typo in error message; Tor Houghton
-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; } |