diff options
author | Pavel Březina <pbrezina@redhat.com> | 2011-09-19 12:53:37 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-10-13 13:32:31 -0400 |
commit | 684d1b48b5582a1bf7812b8c3c663592dc6dfed9 (patch) | |
tree | 63122c680b079a9c31a046ebb38a3489f0b1c95a /src/tools | |
parent | 90a83f3c7b49e689d47553a5aa0eb15751846963 (diff) | |
download | sssd-684d1b48b5582a1bf7812b8c3c663592dc6dfed9.tar.gz sssd-684d1b48b5582a1bf7812b8c3c663592dc6dfed9.tar.bz2 sssd-684d1b48b5582a1bf7812b8c3c663592dc6dfed9.zip |
SysDB commands that save lastUpdate allows this value to be passed in
https://fedorahosted.org/sssd/ticket/836
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/sss_sync_ops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/sss_sync_ops.c b/src/tools/sss_sync_ops.c index 49c6c58e..71722702 100644 --- a/src/tools/sss_sync_ops.c +++ b/src/tools/sss_sync_ops.c @@ -472,7 +472,7 @@ int useradd(TALLOC_CTX *mem_ctx, int ret; ret = sysdb_add_user(sysdb, data->name, data->uid, data->gid, - data->gecos, data->home, data->shell, NULL, 0); + data->gecos, data->home, data->shell, NULL, 0, 0); if (ret) { goto done; } @@ -537,7 +537,7 @@ int groupadd(TALLOC_CTX *mem_ctx, { int ret; - ret = sysdb_add_group(sysdb, data->name, data->gid, NULL, 0); + ret = sysdb_add_group(sysdb, data->name, data->gid, NULL, 0, 0); if (ret == EOK) { flush_nscd_cache(mem_ctx, NSCD_DB_GROUP); } |