diff options
author | Pavel Březina <pbrezina@redhat.com> | 2012-06-26 13:11:27 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-06-29 11:37:18 -0400 |
commit | 96549c5e03047c4f21cb7ea8c01f8ff8bcc91cd8 (patch) | |
tree | 3051ed2a4f504321fe6a057c9201ca21c6a375cf /src | |
parent | 5f73b623fc72e3b9b3590420825f30e618b4d4dd (diff) | |
download | sssd-96549c5e03047c4f21cb7ea8c01f8ff8bcc91cd8.tar.gz sssd-96549c5e03047c4f21cb7ea8c01f8ff8bcc91cd8.tar.xz sssd-96549c5e03047c4f21cb7ea8c01f8ff8bcc91cd8.zip |
sudo ldap provider: mark sdap_sudo_setup_periodical_refresh() as static
Diffstat (limited to 'src')
-rw-r--r-- | src/providers/ldap/sdap_sudo.c | 4 |
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; |