1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r17831: Attempt to fix the build farm: 0x7fffffffffffffff needs special casing too I

think. This broke 'make test' because the newly created user was set to be
kicked off Mi, 22 Jan 1975 23:55:33 CET (unix time 159663333) with the
setuserinfo21 call.

I'm not 100% sure that 0x7ff... means max time as I do it here, I vaguely
remember it to mean "don't touch".

Does anybody know that for sure?

Jeremy, please check this.

Thanks,

Volker
This commit is contained in:
Volker Lendecke 2006-08-25 14:25:06 +00:00 committed by Gerald (Jerry) Carter
parent 8ffe178930
commit 872d1299eb
2 changed files with 7 additions and 1 deletions

View File

@ -223,6 +223,12 @@ static struct timespec nt_time_to_unix_timespec(NTTIME *nt)
return ret; return ret;
} }
if ((nt->high == 0x7fffffff) && (nt->low == 0xffffffff)) {
ret.tv_sec = TIME_T_MAX;
ret.tv_nsec = 0;
return ret;
}
d = (((uint64)nt->high) << 32 ) + ((uint64)nt->low); d = (((uint64)nt->high) << 32 ) + ((uint64)nt->low);
/* d is now in 100ns units, since jan 1st 1601". /* d is now in 100ns units, since jan 1st 1601".
Save off the ns fraction. */ Save off the ns fraction. */

View File

@ -370,7 +370,7 @@ static NTSTATUS pdb_default_create_user(struct pdb_methods *methods,
#ifdef ENABLE_BUILD_FARM_HACKS #ifdef ENABLE_BUILD_FARM_HACKS
if (add_ret != 0) { if (add_ret != 0) {
DEBUG(1, ("Creating a faked user %s for build farm " DEBUG(1, ("Creating a faked user %s for build farm "
"purposes", name)); "purposes\n", name));
faked_create_user(name); faked_create_user(name);
} }
#endif #endif