summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Březina <pbrezina@redhat.com>2012-06-26 13:11:27 +0200
committerStephen Gallagher <sgallagh@redhat.com>2012-06-29 11:37:18 -0400
commit96549c5e03047c4f21cb7ea8c01f8ff8bcc91cd8 (patch)
tree3051ed2a4f504321fe6a057c9201ca21c6a375cf
parent5f73b623fc72e3b9b3590420825f30e618b4d4dd (diff)
downloadsssd-96549c5e03047c4f21cb7ea8c01f8ff8bcc91cd8.tar.gz
sssd-96549c5e03047c4f21cb7ea8c01f8ff8bcc91cd8.tar.xz
sssd-96549c5e03047c4f21cb7ea8c01f8ff8bcc91cd8.zip
sudo ldap provider: mark sdap_sudo_setup_periodical_refresh() as static
-rw-r--r--src/providers/ldap/sdap_sudo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/providers/ldap/sdap_sudo.c b/src/providers/ldap/sdap_sudo.c
index 806c8b3a7..c3c951929 100644
--- a/src/providers/ldap/sdap_sudo.c
+++ b/src/providers/ldap/sdap_sudo.c
@@ -105,7 +105,7 @@ struct bet_ops sdap_sudo_ops = {
};
static void sdap_sudo_get_hostinfo_done(struct tevent_req *req);
-int sdap_sudo_setup_periodical_refresh(struct sdap_sudo_ctx *sudo_ctx);
+static int sdap_sudo_setup_periodical_refresh(struct sdap_sudo_ctx *sudo_ctx);
int sdap_sudo_init(struct be_ctx *be_ctx,
struct sdap_id_ctx *id_ctx,
@@ -192,7 +192,7 @@ static void sdap_sudo_get_hostinfo_done(struct tevent_req *req)
}
}
-int sdap_sudo_setup_periodical_refresh(struct sdap_sudo_ctx *sudo_ctx)
+static int sdap_sudo_setup_periodical_refresh(struct sdap_sudo_ctx *sudo_ctx)
{
struct sdap_id_ctx *id_ctx = sudo_ctx->id_ctx;
struct tevent_req *req;