diff options
author | Damien Miller <djm@mindrot.org> | 2010-03-05 10:42:24 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-03-05 10:42:24 +1100 |
commit | 689b872842ba2e64d2bf52abe0c9b1b1f6a6663f (patch) | |
tree | a4a0a8e42eea6d5d7aec6789cc03dd5ada2d8c30 /ssh-keygen.c | |
parent | a7dab8bfe571e6ee0b53e0852336f8a758b95c61 (diff) |
- djm@cvs.openbsd.org 2010/03/04 23:27:25
[auth-options.c ssh-keygen.c]
"force-command" is not spelled "forced-command"; spotted by
imorgan AT nas.nasa.gov
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r-- | ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c index 492c301d..fc7ca4b0 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.182 2010/03/04 20:35:08 djm Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.183 2010/03/04 23:27:25 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1142,7 +1142,7 @@ prepare_constraint_buf(Buffer *c) if ((constraint_flags & CONSTRAINT_USER_RC) != 0) add_flag_constraint(c, "permit-user-rc"); if (constraint_command != NULL) - add_string_constraint(c, "forced-command", constraint_command); + add_string_constraint(c, "force-command", constraint_command); if (constraint_src_addr != NULL) add_string_constraint(c, "source-address", constraint_src_addr); } |