From b9142f20dfb59055e05fa52c5414fb7c1877c556 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 25 Aug 2006 14:25:06 +0000 Subject: 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 used to be commit 872d1299ebffb7b7d696013fc676820f1fa1777c) --- source3/passdb/pdb_interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/passdb/pdb_interface.c') diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index 4baddb3a93..a42f8325f6 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -370,7 +370,7 @@ static NTSTATUS pdb_default_create_user(struct pdb_methods *methods, #ifdef ENABLE_BUILD_FARM_HACKS if (add_ret != 0) { DEBUG(1, ("Creating a faked user %s for build farm " - "purposes", name)); + "purposes\n", name)); faked_create_user(name); } #endif -- cgit