| Summary: | Error in ntpd(8) manpage. | ||
|---|---|---|---|
| Product: | Documentation | Reporter: | Administrator <root> |
| Component: | Books & Articles | Assignee: | Daniel Gerzo <danger> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
Responsible Changed From-To: freebsd-bugs->freebsd-doc Reassign. State Changed From-To: open->patched This is already fixed in HEAD. 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. :-) State Changed From-To: patched->closed Already MFCed. Responsible Changed From-To: pav->danger Over to me. |
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