From 7f2b878c5a675ea9f9bedcb43171086c18d5f6ab Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Wed, 2 Nov 2011 15:50:58 -0400 Subject: Fix bad backport of group rename patch --- src/db/sysdb_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c index a619118f..514340f3 100644 --- a/src/db/sysdb_ops.c +++ b/src/db/sysdb_ops.c @@ -1103,7 +1103,7 @@ int sysdb_add_group(TALLOC_CTX *mem_ctx, domain, gid, NULL, &msg); if (ret != ENOENT) { if (ret == EOK) { - ret = sysdb_delete_group(sysdb, NULL, gid); + ret = sysdb_delete_group(tmpctx, ctx, domain, NULL, gid); } if (ret != EOK) { -- cgit