Displaying 1 result from an estimated 1 matches for "time_fixup_const".
2005 Feb 08
0
Samba patch kludge-gmt fixes red files in WinCvs
...(use_kludge_gmt)
+ {
+ ret -= get_serverzone();
+ ret += LocTimeDiff(ret);
+ }
return(ret);
}
@@ -406,7 +413,8 @@
}
/* this converts GMT to kludge-GMT */
- t -= TimeDiff(t) - get_serverzone();
+ if (use_kludge_gmt)
+ t -= TimeDiff(t) - get_serverzone();
d = (double)(t);
d += TIME_FIXUP_CONSTANT;
diff -Naur samba-2.2.9.orig/source/param/loadparm.c samba-2.2.9/source/param/loadparm.c
--- samba-2.2.9.orig/source/param/loadparm.c Sat May 8 03:07:10 2004
+++ samba-2.2.9/source/param/loadparm.c Fri Oct 22 15:40:35 2004
@@ -94,6 +94,7 @@
BOOL use_getwd_cache = True;
extern int extra_time...