summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorPavel Reichl <preichl@redhat.com>2014-01-28 17:19:07 +0000
committerJakub Hrozek <jhrozek@redhat.com>2014-03-18 14:01:51 +0100
commit40dd828529cf01291daf0f075b850783409e8c05 (patch)
tree21d00c5954a5b6f5ac77822bb1831956ed9d9ed8 /src/util
parent424604f0b4d0ce581b598a1ecda2cc4a7e4fd8ad (diff)
downloadsssd-40dd828529cf01291daf0f075b850783409e8c05.tar.gz
sssd-40dd828529cf01291daf0f075b850783409e8c05.tar.xz
sssd-40dd828529cf01291daf0f075b850783409e8c05.zip
refactor calls of sss_parse_name
sss_parse_name now supports NULL as output parameters so existing calls passing arguments which were never read were substituted by NULL. Reviewed-by: Jakub Hrozek <jhrozek@redhat.com>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/domain_info_utils.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util/domain_info_utils.c b/src/util/domain_info_utils.c
index b41864432..fc4287076 100644
--- a/src/util/domain_info_utils.c
+++ b/src/util/domain_info_utils.c
@@ -160,7 +160,6 @@ find_subdomain_by_object_name(struct sss_domain_info *domain,
TALLOC_CTX *tmp_ctx;
struct sss_domain_info *dom = NULL;
char *domainname = NULL;
- char *name = NULL;
errno_t ret;
tmp_ctx = talloc_new(NULL);
@@ -170,7 +169,7 @@ find_subdomain_by_object_name(struct sss_domain_info *domain,
}
ret = sss_parse_name(tmp_ctx, domain->names, object_name,
- &domainname, &name);
+ &domainname, NULL);
if (ret != EOK) {
DEBUG(SSSDBG_CRIT_FAILURE, "Unable to parse name '%s' [%d]: %s\n",
object_name, ret, sss_strerror(ret));