diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2010-03-13 23:38:14 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2010-03-13 23:38:14 +0000 |
commit | 7669a330056706606f54876b93d0a4620b30a28b (patch) | |
tree | 3ffcb03cf9dcbd796417e0e9a756bbfd68476251 /usr.bin/ssh | |
parent | fb314d4b024d79112e61897c33e29cbb63488435 (diff) |
fix a formatting error (args need quoted); noted by stevesk
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.1 b/usr.bin/ssh/ssh-keygen.1 index 1ee0835f3e2..3e03a9bd0cd 100644 --- a/usr.bin/ssh/ssh-keygen.1 +++ b/usr.bin/ssh/ssh-keygen.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ssh-keygen.1,v 1.91 2010/03/13 21:45:46 djm Exp $ +.\" $OpenBSD: ssh-keygen.1,v 1.92 2010/03/13 23:38:13 jmc Exp $ .\" .\" -*- nroff -*- .\" @@ -538,7 +538,7 @@ By default, generated certificates are valid for all users or hosts. To generate a certificate for a specified set of principals: .Pp .Dl $ ssh-keygen -s ca_key -I key_id -n user1,user2 user_key.pub -.Dl $ ssh-keygen -s ca_key -I key_id -h -n host.domain user_key.pub +.Dl "$ ssh-keygen -s ca_key -I key_id -h -n host.domain user_key.pub" .Pp Additional limitations on the validity and use of user certificates may be specified through certificate constraints. |