View | Details | Raw Unified | Return to bug 32227
Collapse All | Expand All

(-)modules/univention/s4connector/s4/__init__.py (-1 / +1 lines)
 Lines 167-173    Link Here 
167
167
168
def samba2s4_time(l):
168
def samba2s4_time(l):
169
	d=116444736000000000L #difference between 1601 and 1970
169
	d=116444736000000000L #difference between 1601 and 1970
170
	return long(time.mktime(time.gmtime(l+3600)))*10000000+d
170
	return long(time.mktime(time.localtime(l)))*10000000+d
171
171
172
def s42samba_time(l):
172
def s42samba_time(l):
173
	if l == 0:
173
	if l == 0:

Return to bug 32227