summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5
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/providers/krb5
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/providers/krb5')
-rw-r--r--src/providers/krb5/krb5_common.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/providers/krb5/krb5_common.c b/src/providers/krb5/krb5_common.c
index bf7b1f0e0..af38db04b 100644
--- a/src/providers/krb5/krb5_common.c
+++ b/src/providers/krb5/krb5_common.c
@@ -1005,7 +1005,6 @@ errno_t krb5_get_simple_upn(TALLOC_CTX *mem_ctx, struct krb5_ctx *krb5_ctx,
char *uc_dom = NULL;
char *upn;
char *name;
- char *domname;
TALLOC_CTX *tmp_ctx = NULL;
errno_t ret;
@@ -1035,7 +1034,7 @@ errno_t krb5_get_simple_upn(TALLOC_CTX *mem_ctx, struct krb5_ctx *krb5_ctx,
/* Subdomains already have a fully qualified name, which contains
* the domain name. We need to replace it with the realm name
*/
- ret = sss_parse_name(tmp_ctx, dom->names, username, &domname, &name);
+ ret = sss_parse_name(tmp_ctx, dom->names, username, NULL, &name);
if (ret != EOK) {
DEBUG(SSSDBG_OP_FAILURE,
"Could not parse [%s] into name and "