summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5/krb5_child.c
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2010-10-28 14:14:13 +0200
committerStephen Gallagher <sgallagh@redhat.com>2010-11-04 15:04:20 -0400
commitfab9c6a75eaf09e4f5440f4bb530c26009b0ffc7 (patch)
tree0eaa0652c7544485f0088bc3de16e1caad0bf6a6 /src/providers/krb5/krb5_child.c
parent0bbe2065770968c70fd305da4f6eda1a360a3f1b (diff)
downloadsssd-fab9c6a75eaf09e4f5440f4bb530c26009b0ffc7.tar.gz
sssd-fab9c6a75eaf09e4f5440f4bb530c26009b0ffc7.tar.xz
sssd-fab9c6a75eaf09e4f5440f4bb530c26009b0ffc7.zip
Make krb5_setup() public
Diffstat (limited to 'src/providers/krb5/krb5_child.c')
-rw-r--r--src/providers/krb5/krb5_child.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c
index b028962a2..9ba2f827d 100644
--- a/src/providers/krb5/krb5_child.c
+++ b/src/providers/krb5/krb5_child.c
@@ -930,7 +930,7 @@ static int krb5_cleanup(void *ptr)
return EOK;
}
-static int krb5_setup(struct krb5_req *kr, uint32_t offline)
+static int krb5_child_setup(struct krb5_req *kr, uint32_t offline)
{
krb5_error_code kerr = 0;
@@ -1120,9 +1120,9 @@ int main(int argc, const char *argv[])
goto fail;
}
- ret = krb5_setup(kr, offline);
+ ret = krb5_child_setup(kr, offline);
if (ret != EOK) {
- DEBUG(1, ("krb5_setup failed.\n"));
+ DEBUG(1, ("krb5_child_setup failed.\n"));
goto fail;
}