From 5efef2a52ae0e07239942faa7b81c6b62a7be49d Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 6 Nov 2009 10:17:48 -0500 Subject: Always set last update and expire time modifications to existing users/groups were setting metadata, but creation was not. Fixes #259 --- server/tools/sss_sync_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/tools') diff --git a/server/tools/sss_sync_ops.c b/server/tools/sss_sync_ops.c index 2bea4f07c..3359e5be2 100644 --- a/server/tools/sss_sync_ops.c +++ b/server/tools/sss_sync_ops.c @@ -334,7 +334,7 @@ static struct tevent_req *user_add_send(TALLOC_CTX *mem_ctx, state->data->domain, state->data->name, state->data->uid, state->data->gid, state->data->gecos, state->data->home, - state->data->shell, NULL); + state->data->shell, NULL, 0); if (!subreq) { talloc_zfree(req); return NULL; @@ -800,7 +800,7 @@ static struct tevent_req *group_add_send(TALLOC_CTX *mem_ctx, subreq = sysdb_add_group_send(state, state->ev, state->handle, state->data->domain, state->data->name, - state->data->gid, NULL); + state->data->gid, NULL, 0); if (!subreq) { talloc_zfree(req); return NULL; -- cgit