summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/db/sysdb_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c
index f0900286c..14af94889 100644
--- a/src/db/sysdb_ops.c
+++ b/src/db/sysdb_ops.c
@@ -2227,7 +2227,7 @@ errno_t sysdb_update_members(struct sysdb_ctx *sysdb,
add_groups[i], user);
if (ret != EOK) {
DEBUG(1, ("Could not add user [%s] to group [%s]. "
- "Skipping.\n"));
+ "Skipping.\n", user, add_groups[i]));
/* Continue on, we should try to finish the rest */
}
}
@@ -2240,7 +2240,7 @@ errno_t sysdb_update_members(struct sysdb_ctx *sysdb,
del_groups[i], user);
if (ret != EOK) {
DEBUG(1, ("Could not remove user [%s] from group [%s]. "
- "Skipping\n"));
+ "Skipping\n", user, del_groups[i]));
/* Continue on, we should try to finish the rest */
}
}