- Resolves: rhbz#1375552 - krb5_map_user doesn't seem effective anymore - Resolves: rhbz#1349286 - authconfig fails with SSSDConfig.NoDomainError: default if nonexistent domain is mentioned
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 96e8cf44298c257d509219dd9c45b8cdae792ab5 Mon Sep 17 00:00:00 2001
|
|
From: Jakub Hrozek <jhrozek@redhat.com>
|
|
Date: Tue, 6 Sep 2016 12:13:08 +0200
|
|
Subject: [PATCH 41/79] TOOLS: Fix a typo in groupadd()
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Resolves:
|
|
https://fedorahosted.org/sssd/ticket/3173
|
|
|
|
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
|
|
(cherry picked from commit 6be723a089a1e07a1cd19b4fa53fd142c13f0c69)
|
|
---
|
|
src/tools/sss_sync_ops.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/tools/sss_sync_ops.c b/src/tools/sss_sync_ops.c
|
|
index a23a0b8c30366d2fb68554bfed184b8fce675e2b..39ef5bec96bd3942da8a8adfd21c99b03a77e551 100644
|
|
--- a/src/tools/sss_sync_ops.c
|
|
+++ b/src/tools/sss_sync_ops.c
|
|
@@ -657,7 +657,7 @@ int groupadd(struct ops_ctx *data)
|
|
int ret;
|
|
|
|
data->sysdb_fqname = sss_create_internal_fqname(data,
|
|
- data->sysdb_fqname,
|
|
+ data->name,
|
|
data->domain->name);
|
|
if (data->sysdb_fqname == NULL) {
|
|
return ENOMEM;
|
|
--
|
|
2.9.3
|
|
|