summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5/krb5_child.c
diff options
context:
space:
mode:
authorJan Zeleny <jzeleny@redhat.com>2011-04-28 02:52:38 -0400
committerStephen Gallagher <sgallagh@redhat.com>2011-05-05 13:24:59 -0400
commit628187049e815ee54637398c8011883d762c8a64 (patch)
tree19b5319574cfa6c14ec50d8a1f76baa76c44ce15 /src/providers/krb5/krb5_child.c
parenteb6f8a6ebd90084c8132007e2712cddc527a93f4 (diff)
downloadsssd-628187049e815ee54637398c8011883d762c8a64.tar.gz
sssd-628187049e815ee54637398c8011883d762c8a64.tar.xz
sssd-628187049e815ee54637398c8011883d762c8a64.zip
Added some kerberos functions for building on RHEL5
Diffstat (limited to 'src/providers/krb5/krb5_child.c')
-rw-r--r--src/providers/krb5/krb5_child.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c
index fcd108aac..ffc6c798d 100644
--- a/src/providers/krb5/krb5_child.c
+++ b/src/providers/krb5/krb5_child.c
@@ -1460,11 +1460,11 @@ static int krb5_child_setup(struct krb5_req *kr, uint32_t offline)
DEBUG(1, ("krb5_parse_name failed.\n"));
goto failed;
}
- kerr = krb5_unparse_name_flags(kr->ctx, fast_princ_struct,
+ kerr = sss_krb5_unparse_name_flags(kr->ctx, fast_princ_struct,
KRB5_PRINCIPAL_UNPARSE_NO_REALM,
&tmp_str);
if (kerr) {
- DEBUG(1, ("krb5_unparse_name_flags failed.\n"));
+ DEBUG(1, ("sss_krb5_unparse_name_flags failed.\n"));
goto failed;
}
fast_principal = talloc_strdup(kr, tmp_str);