diff options
author | 2010-03-16 15:46:52 +0000 | |
---|---|---|
committer | 2010-03-16 15:46:52 +0000 | |
commit | ba6dc51147c305e1c31e6519ab9f2b0ba77ba3d9 (patch) | |
tree | 08663c7c2616f7cff4872598aeb7b215a721fbb9 | |
parent | Add HTC Tattoo to the list of supported devices. (diff) | |
download | wireguard-openbsd-ba6dc51147c305e1c31e6519ab9f2b0ba77ba3d9.tar.xz wireguard-openbsd-ba6dc51147c305e1c31e6519ab9f2b0ba77ba3d9.zip |
spelling in error message. ok djm kettenis
-rw-r--r-- | usr.bin/ssh/auth-options.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/auth-options.c b/usr.bin/ssh/auth-options.c index f1cb288589c..e6819d98510 100644 --- a/usr.bin/ssh/auth-options.c +++ b/usr.bin/ssh/auth-options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-options.c,v 1.48 2010/03/07 11:57:13 dtucker Exp $ */ +/* $OpenBSD: auth-options.c,v 1.49 2010/03/16 15:46:52 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -432,7 +432,7 @@ auth_cert_constraints(Buffer *c_orig, struct passwd *pw) goto out; } if (strlen(command) != clen) { - error("force-command constrain contains \\0"); + error("force-command constraint contains \\0"); goto out; } if (cert_forced_command != NULL) { @@ -452,7 +452,7 @@ auth_cert_constraints(Buffer *c_orig, struct passwd *pw) goto out; } if (strlen(allowed) != clen) { - error("source-address constrain contains \\0"); + error("source-address constraint contains \\0"); goto out; } if (cert_source_address_done++) { |