41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
|
From 232b543cb667cbd0769608b4e5c790ab73f4c2b4 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= <fidencio@redhat.com>
|
||
|
Date: Wed, 24 Aug 2016 13:32:10 +0200
|
||
|
Subject: [PATCH 18/39] PROXY: Mention that save_user()'s parameters are
|
||
|
already qualified
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Those comments are similar to what we have in the save_group() function.
|
||
|
|
||
|
Related:
|
||
|
https://fedorahosted.org/sssd/ticket/3134
|
||
|
|
||
|
Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
|
||
|
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
|
||
|
(cherry picked from commit 9900d2b153ebb7d994ccd05275f18b973556d5b3)
|
||
|
---
|
||
|
src/providers/proxy/proxy_id.c | 5 +++--
|
||
|
1 file changed, 3 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/src/providers/proxy/proxy_id.c b/src/providers/proxy/proxy_id.c
|
||
|
index c4d68f8e6855941dda386658758c37b4c9080712..921b5253a5ffe90526c73b8078067d69f83c75e6 100644
|
||
|
--- a/src/providers/proxy/proxy_id.c
|
||
|
+++ b/src/providers/proxy/proxy_id.c
|
||
|
@@ -223,8 +223,9 @@ delete_user(struct sss_domain_info *domain,
|
||
|
}
|
||
|
|
||
|
static int save_user(struct sss_domain_info *domain,
|
||
|
- struct passwd *pwd, const char *real_name,
|
||
|
- const char *alias)
|
||
|
+ struct passwd *pwd,
|
||
|
+ const char *real_name, /* already qualified */
|
||
|
+ const char *alias) /* already qualified */
|
||
|
{
|
||
|
const char *shell;
|
||
|
const char *gecos;
|
||
|
--
|
||
|
2.9.3
|
||
|
|