]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- djm@cvs.openbsd.org 2010/03/04 23:27:25
authorDamien Miller <djm@mindrot.org>
Thu, 4 Mar 2010 23:42:24 +0000 (10:42 +1100)
committerDamien Miller <djm@mindrot.org>
Thu, 4 Mar 2010 23:42:24 +0000 (10:42 +1100)
     [auth-options.c ssh-keygen.c]
     "force-command" is not spelled "forced-command"; spotted by
     imorgan AT nas.nasa.gov

ChangeLog
auth-options.c
ssh-keygen.c

index c441b2013bf8423c505502a6edd5d98c5c8fa558..7b50de5d3df0e88f8d3928f68f58b9d6c350c0c6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      [ssh.1 sshd.8]
      move section on CA and revoked keys from ssh.1 to sshd.8's known hosts
      format section and rework it a bit; requested by jmc@
+   - 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
  - (tim) [ssh-pkcs11.c] Fix "non-constant initializer" errors in older
    compilers. OK djm@
 
index d14624bf43b39f8af65a74ff28763dfd1a24c1b2..bcf5589d75cc46c7846184423820ba8ce1aa3118 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth-options.c,v 1.46 2010/03/03 01:44:36 djm Exp $ */
+/* $OpenBSD: auth-options.c,v 1.47 2010/03/04 23:27:25 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -446,7 +446,7 @@ auth_cert_constraints(Buffer *c_orig, struct passwd *pw)
                        }
                        if (cert_forced_command != NULL) {
                                error("Certificate has multiple "
-                                   "forced-command constraints");
+                                   "force-command constraints");
                                xfree(command);
                                goto out;
                        }
index 492c301d34988931702e25677745326ed0853070..fc7ca4b0caea3cedce1ba59dbd6764a7adae867f 100644 (file)
@@ -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);
 }