[Zope-Checkins] CVS: Products/DCOracle2/src - dco2.c:1.106

Matthew T. Kromer matt@zope.com
Fri, 12 Apr 2002 12:42:35 -0400


Update of /cvs-repository/Products/DCOracle2/src
In directory cvs.zope.org:/tmp/cvs-serv27082/src

Modified Files:
	dco2.c 
Log Message:
Make isdst flag in mktime for date creation -1 as default (unknown DST) 


=== Products/DCOracle2/src/dco2.c 1.105 => 1.106 ===
 	dateobject->tm.tm_wday	= 0;
 	dateobject->tm.tm_yday	= 0;
-	dateobject->tm.tm_isdst = 0;
+	dateobject->tm.tm_isdst = -1; /* DST unknown */
 #ifdef linux
 	dateobject->tm.tm_gmtoff= 0;
 	dateobject->tm.tm_zone	= 0;