mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-04-23 23:55:56 +00:00
- (dtucker) [mdoc2man.awk] Teach it to understand the .Ux macro.
This commit is contained in:
parent
199ee6ff07
commit
6ac91a7c83
@ -27,6 +27,7 @@
|
|||||||
- dtucker@cvs.openbsd.org 2009/10/24 00:48:34
|
- dtucker@cvs.openbsd.org 2009/10/24 00:48:34
|
||||||
[ssh-keygen.1]
|
[ssh-keygen.1]
|
||||||
ssh-keygen now uses AES-128 for private keys
|
ssh-keygen now uses AES-128 for private keys
|
||||||
|
- (dtucker) [mdoc2man.awk] Teach it to understand the .Ux macro.
|
||||||
|
|
||||||
20091011
|
20091011
|
||||||
- (dtucker) [configure.ac sftp-client.c] Remove the gyrations required for
|
- (dtucker) [configure.ac sftp-client.c] Remove the gyrations required for
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/awk
|
#!/usr/bin/awk
|
||||||
#
|
#
|
||||||
# $Id: mdoc2man.awk,v 1.8 2007/06/05 10:01:16 dtucker Exp $
|
# $Id: mdoc2man.awk,v 1.9 2009/10/24 00:52:42 dtucker Exp $
|
||||||
#
|
#
|
||||||
# Version history:
|
# Version history:
|
||||||
# v4+ Adapted for OpenSSH Portable (see cvs Id and history)
|
# v4+ Adapted for OpenSSH Portable (see cvs Id and history)
|
||||||
@ -149,6 +149,9 @@ function add(str) {
|
|||||||
} else if(match(words[w],"^Dt$")) {
|
} else if(match(words[w],"^Dt$")) {
|
||||||
id=wtail()
|
id=wtail()
|
||||||
next
|
next
|
||||||
|
} else if(match(words[w],"^Ux$")) {
|
||||||
|
add("UNIX")
|
||||||
|
skip=1
|
||||||
} else if(match(words[w],"^Ox$")) {
|
} else if(match(words[w],"^Ox$")) {
|
||||||
add("OpenBSD")
|
add("OpenBSD")
|
||||||
skip=1
|
skip=1
|
||||||
|
Loading…
Reference in New Issue
Block a user