man pages double entries

Hello
I notice some "double entries" in man enc and man tar.

Code:
ENC(1)                                                   OpenSSL

NAME
       openssl-enc, enc - symmetric cipher routines

OPTIONS

       -salt
           use a salt in the key derivation routines. This is the default.

       -nosalt
           don't use a salt in the key derivation routines. This option SHOULD NOT be used except for test purposes or
           compatibility with ancient versions of OpenSSL and SSLeay.
[code]        
And after few lines:
[code]
       -nosalt
           do not use a salt

       -salt
           use salt (randomly generated or provide with -S option) when encrypting (this is the default).

Code:
TAR(1)                                       FreeBSD General Commands Manual

NAME
     tar - manipulate tape archives

OPTIONS

     -n, --norecurse, --no-recursion
             Do not operate recursively on the content of directories.
             default behavior if tar is run as non-root in x mode.
ten entries down, without any comment:
Code:
     -n, --norecurse, --no-recursion

Mistakes are not usual in the manual so I 'm asking for confirmation.
Maybe my system have some problem generating man pages.
FreeBSD - 11.3-RELEASE-p11 - i386

Thanks
KBK
 
Seems to have been introduced with 10.0-RELEASE (earliest man page I could find). So it's been there for a while. Not really sure when this was fixed, it's part of the OpenSSL crypto that's imported. So I suspect this was actually in the original, imported, files from OpenSSL. One important difference between 11.x and 12.x is the OpenSSL version.

 
Back
Top