From owner-freebsd-stable@FreeBSD.ORG Wed Aug 16 14:41:00 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6070116A4DA for ; Wed, 16 Aug 2006 14:41:00 +0000 (UTC) (envelope-from forrie@forrie.com) Received: from forrie.com (c-24-62-224-60.hsd1.nh.comcast.net [24.62.224.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id F19FE43D46 for ; Wed, 16 Aug 2006 14:40:59 +0000 (GMT) (envelope-from forrie@forrie.com) Received: from [192.168.230.27] (spk-gw.online-buddies.com [66.92.69.182]) (authenticated bits=0) by forrie.com (8.13.8/8.13.6) with ESMTP id k7GEew64064740 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 16 Aug 2006 10:40:58 -0400 (EDT) (envelope-from forrie@forrie.com) Message-ID: <44E32EB2.1040804@forrie.com> Date: Wed, 16 Aug 2006 10:41:54 -0400 From: Forrest Aldrich User-Agent: Thunderbird 1.5.0.5 (Windows/20060808) MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.88.4/1669/Wed Aug 16 07:54:21 2006 on mail.forrie.com X-Virus-Status: Clean Subject: Error in "ntpd" manpage X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 14:41:00 -0000 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; I found this bug while reading external documentation about setting up NTPD.... I'm glad I read this ;-) _F