Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Aug 2004 09:41:30 +0200
From:      Ollivier Robert <roberto@keltia.freenix.fr>
To:        David O'Brien <obrien@FreeBSD.org>
Cc:        src-committers@FreeBSD.org
Subject:   Re: cvs commit: src/contrib/ntp - Imported sources
Message-ID:  <20040803074130.GA27391@tara.freenix.org>
In-Reply-To: <20040802180135.GB1064@dragon.nuxi.com>
References:  <200407201501.i6KF1xVL097253@repoman.freebsd.org> <20040802180135.GB1064@dragon.nuxi.com>

next in thread | previous in thread | raw e-mail | index | archive | help
According to David O'Brien:
> Are you willing to work with D.Mills to add an "quiet" flag to ntpdate?
> Our boot is now much more verbose with things like:

Hmm, last time I checked the ntp-hackers list, ntpdate was supposed to be
deprecated (replaced by ntpd -q) although many people complained ntpd was
much slower to synchronise and thus ntpdate was still maintained.

ntpdate.html has the death warrant:

   Disclaimer: The functionality of this program is now available in the
   ntpd program. See the -q command line option in the ntpd - Network
   Time Protocol (NTP) daemon page. After a suitable period of mourning,
   the ntpdate program is to be retired from this distribution

So I doubt it would be accepted. 

I'll send a patch to bugzilla.ntp.org anyway.  They mix stdout/stderr
output which is bad but I won't fix that.


--- ntpdate.c.old	Tue Jul 20 17:01:41 2004
+++ ntpdate.c	Tue Aug  3 09:34:44 2004
@@ -1339,7 +1339,8 @@
         hints.ai_family = ai_fam_templ;
         hints.ai_socktype = SOCK_DGRAM;
 
-        printf("Looking for host %s and service %s\n", serv, service);
+        if (verbose)
+        	printf("Looking for host %s and service %s\n", serv, service);
 
         error = getaddrinfo(serv, service, &hints, &addrResult);
         if (error != 0) {
@@ -1348,7 +1349,8 @@
 		return;
 	}
         else {
-                fprintf(stderr, "host found : %s\n", stohost((struct sockaddr_storage*)addrResult->ai_addr));
+                if (verbose)
+                        fprintf(stderr, "host found : %s\n", stohost((struct sockaddr_storage*)addrResult->ai_addr));
         }
 
 	server = (struct server *)emalloc(sizeof(struct server));
-- 
Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr
Darwin snuadh.freenix.org Kernel Version 7.4.0: Wed May 12 16:58:24 PDT 2004



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040803074130.GA27391>