summaryrefslogtreecommitdiffstats
path: root/server/tests
diff options
context:
space:
mode:
authorSimo Sorce <ssorce@redhat.com>2009-11-06 10:17:48 -0500
committerSimo Sorce <ssorce@redhat.com>2009-11-06 17:43:13 -0500
commit5efef2a52ae0e07239942faa7b81c6b62a7be49d (patch)
tree876c03a77b9704c640ff5918809fe036a54d1399 /server/tests
parent8628af2c666bdd073a447156cbd0cb889326b657 (diff)
downloadsssd-5efef2a52ae0e07239942faa7b81c6b62a7be49d.tar.gz
sssd-5efef2a52ae0e07239942faa7b81c6b62a7be49d.tar.xz
sssd-5efef2a52ae0e07239942faa7b81c6b62a7be49d.zip
Always set last update and expire time
modifications to existing users/groups were setting metadata, but creation was not. Fixes #259
Diffstat (limited to 'server/tests')
-rw-r--r--server/tests/sysdb-tests.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/sysdb-tests.c b/server/tests/sysdb-tests.c
index d08a15526..32ed7bb27 100644
--- a/server/tests/sysdb-tests.c
+++ b/server/tests/sysdb-tests.c
@@ -232,7 +232,7 @@ static void test_add_user(struct tevent_req *subreq)
data->ctx->domain, data->username,
data->uid, 0,
gecos, homedir, "/bin/bash",
- NULL);
+ NULL, 0);
if (!subreq) {
return test_return(data, ENOMEM);
}
@@ -445,7 +445,7 @@ static void test_add_group(struct tevent_req *req)
subreq = sysdb_add_group_send(data, data->ev, data->handle,
data->ctx->domain, data->groupname,
- data->gid, NULL);
+ data->gid, NULL, 0);
if (!subreq) {
test_return(data, ret);
}