summaryrefslogtreecommitdiffstats
path: root/src/providers/proxy
diff options
context:
space:
mode:
authorJan Zeleny <jzeleny@redhat.com>2012-02-21 07:07:30 -0500
committerStephen Gallagher <sgallagh@redhat.com>2012-02-24 14:58:26 -0500
commit277a0187190fd417696590b303a5d7a204ed0555 (patch)
treea06e000f6b5e9f88b61f7907c32a8e698a298733 /src/providers/proxy
parentce162d4a207d8f63a31587e84e86ad4bea986cf2 (diff)
downloadsssd-277a0187190fd417696590b303a5d7a204ed0555.tar.gz
sssd-277a0187190fd417696590b303a5d7a204ed0555.tar.xz
sssd-277a0187190fd417696590b303a5d7a204ed0555.zip
Delete missing attributes from netgroups to be stored
https://fedorahosted.org/sssd/ticket/1136
Diffstat (limited to 'src/providers/proxy')
-rw-r--r--src/providers/proxy/proxy_netgroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/proxy/proxy_netgroup.c b/src/providers/proxy/proxy_netgroup.c
index 47a425b46..797f8c6b8 100644
--- a/src/providers/proxy/proxy_netgroup.c
+++ b/src/providers/proxy/proxy_netgroup.c
@@ -87,7 +87,7 @@ static errno_t save_netgroup(struct sysdb_ctx *sysdb,
}
}
- ret = sysdb_add_netgroup(sysdb, name, NULL, attrs, cache_timeout, 0);
+ ret = sysdb_add_netgroup(sysdb, name, NULL, attrs, NULL, cache_timeout, 0);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE, ("sysdb_add_netgroup failed.\n"));
return ret;