Bug 102185

Summary: Error in ntpd(8) manpage.
Product: Documentation Reporter: Administrator <root>
Component: Books & ArticlesAssignee: Daniel Gerzo <danger>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Administrator 2006-08-17 13:30:14 UTC
There is an error in the NTPD manpage.

The option -L means "do NOT listen to Virtual IPs" the present manpage
(FreeBSD-6.1-STABLE) says:

    -L      Listen to virtual IPs.


looking at the code in /usr/src/contrib/ntpd/cmd_args.c shows this:

    /*
     * Definitions of things either imported from or exported to outside
     */
    extern char const *progname;
    int     listen_to_virtual_ips = 1;

and further down:

    case 'L':
                        listen_to_virtual_ips = 0;
                        break;

Fix: 

Correct the usage statement for the "-L" flag, per the above.
How-To-Repeat: 	$ man ntpd
Comment 1 Mark Linimon freebsd_committer freebsd_triage 2006-08-17 17:47:33 UTC
Responsible Changed
From-To: freebsd-bugs->freebsd-doc

Reassign.
Comment 2 Daniel Gerzo freebsd_committer freebsd_triage 2006-09-17 21:05:45 UTC
State Changed
From-To: open->patched

This is already fixed in HEAD.
Comment 3 Daniel Gerzo freebsd_committer freebsd_triage 2006-09-17 21:08:03 UTC
Responsible Changed
From-To: freebsd-doc->pav

Assign to the guy who imported new sources (pav@) and let's hope 
he will also MFC them. :-)
Comment 4 Daniel Gerzo freebsd_committer freebsd_triage 2006-11-05 20:01:31 UTC
State Changed
From-To: patched->closed

Already MFCed.
Comment 5 Daniel Gerzo freebsd_committer freebsd_triage 2006-11-05 20:03:33 UTC
Responsible Changed
From-To: pav->danger

Over to me.