From owner-cvs-src@FreeBSD.ORG Mon Jul 21 04:06:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A72C37B401; Mon, 21 Jul 2003 04:06:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08DF643FAF; Mon, 21 Jul 2003 04:06:48 -0700 (PDT) (envelope-from maxim@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h6LB6l0U018016; Mon, 21 Jul 2003 04:06:47 -0700 (PDT) (envelope-from maxim@repoman.freebsd.org) Received: (from maxim@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h6LB6ltL018015; Mon, 21 Jul 2003 04:06:47 -0700 (PDT) Message-Id: <200307211106.h6LB6ltL018015@repoman.freebsd.org> From: Maxim Konovalov Date: Mon, 21 Jul 2003 04:06:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ping6 ping6.c src/usr.sbin/traceroute6 traceroute6.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Jul 2003 11:06:48 -0000 maxim 2003/07/21 04:06:47 PDT FreeBSD src repository Modified files: sbin/ping6 ping6.c usr.sbin/traceroute6 traceroute6.c Log: Quote from a Problem Report: The output format specifier for the round-trip time in ping6 should be changed to %.3f instead of %g since %g doesn't accurately represent the precision of the number being output. In particular, %g truncates trailing zeroes. 0.01 ms does not mean the same thing as 0.010 ms. Although they are numerically identical, they do not have the same precision. PR: bin/52324, bin/52750 Submitted by: dg MFC after: 1 week Revision Changes Path 1.23 +1 -1 src/sbin/ping6/ping6.c 1.12 +1 -1 src/usr.sbin/traceroute6/traceroute6.c