From: Miroslav Lichvar Date: Mon, 11 Apr 2011 15:54:01 +0000 (+0200) Subject: Change default maxclockerror to 1 ppm X-Git-Tag: 1.25-pre2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28710e0449a35869eea5f6f2a64e4abef742eb11;p=thirdparty%2Fchrony.git Change default maxclockerror to 1 ppm --- diff --git a/chrony.texi b/chrony.texi index e4c56e3c..c86ba312 100644 --- a/chrony.texi +++ b/chrony.texi @@ -2231,7 +2231,7 @@ The @code{maxclockerror} directive sets the maximum assumed frequency error of the local clock. This is a frequency stability of the clock, not an absolute frequency error. -By default, the maximum assumed error is set to 10 ppm. +By default, the maximum assumed error is set to 1 ppm. The syntax is diff --git a/conf.c b/conf.c index 2667d2bb..187f1e35 100644 --- a/conf.c +++ b/conf.c @@ -120,7 +120,7 @@ static char *drift_file = NULL; static char *rtc_file = NULL; static unsigned long command_key_id; static double max_update_skew = 1000.0; -static double max_clock_error = 10; /* in ppm */ +static double max_clock_error = 1.0; /* in ppm */ static double reselect_distance = 1e-4; static double stratum_weight = 1.0;