[Bug 907] patch to mdoc2man.awk

bugzilla-daemon at mindrot.org bugzilla-daemon at mindrot.org
Fri Jul 23 21:04:20 EST 2004


http://bugzilla.mindrot.org/show_bug.cgi?id=907

           Summary: patch to mdoc2man.awk
           Product: Portable OpenSSH
           Version: -current
          Platform: All
        OS/Version: Solaris
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Build system
        AssignedTo: openssh-bugs at mindrot.org
        ReportedBy: Joerg.Dieter.Friedrich at uni-konstanz.de


Otherwise the ssh.1 manpage is not build correct.

.It PasswordAuthentication

matches and gets replaced by ".B"

Patch:
--- mdoc2man.awk.orig   Fri Jul 23 12:46:49 2004
+++ mdoc2man.awk        Fri Jul 23 12:47:13 2004
@@ -306,7 +306,7 @@
       else if(optlist==3) {
        add(".TP")
        prenl++
-       if(match(words[w+1],"^Pa|Ev$")) {
+       if(match(words[w+1],"^Pa$|^Ev$")) {
          add(".B")
          w++
        }



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.




More information about the openssh-bugs mailing list