|
From: <wow...@us...> - 2015-09-11 13:24:18
|
Revision: 585
http://sourceforge.net/p/ptpd/code/585
Author: wowczarek
Date: 2015-09-11 13:24:16 +0000 (Fri, 11 Sep 2015)
Log Message:
-----------
- Make alwaysRespectUtcOffset true by default:
this makes more sense than previous behaviour,
if the UTC offset is there, use it.
Modified Paths:
--------------
trunk/src/dep/daemonconfig.c
Modified: trunk/src/dep/daemonconfig.c
===================================================================
--- trunk/src/dep/daemonconfig.c 2015-08-28 14:47:19 UTC (rev 584)
+++ trunk/src/dep/daemonconfig.c 2015-09-11 13:24:16 UTC (rev 585)
@@ -919,10 +919,12 @@
/* disabled by default */
rtOpts->announceTimeoutGracePeriod = 0;
- rtOpts->alwaysRespectUtcOffset=FALSE;
- rtOpts->preferUtcValid=FALSE;
- rtOpts->requireUtcValid=FALSE;
+ /* currentUtcOffsetValid compatibility flags */
+ rtOpts->alwaysRespectUtcOffset = TRUE;
+ rtOpts->preferUtcValid = FALSE;
+ rtOpts->requireUtcValid = FALSE;
+
/* Try 46 for expedited forwarding */
rtOpts->dscpValue = 0;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|