summaryrefslogtreecommitdiffstats
path: root/src/responder/nss/nsssrv_netgroup.c
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2012-12-02 19:05:44 +0100
committerJakub Hrozek <jhrozek@redhat.com>2012-12-04 11:21:09 +0100
commit30812cdfb92923c8d062a5db989015c676a87f07 (patch)
tree092e2b8e7a8b2bf9b8e4571cc757a34d39e202c4 /src/responder/nss/nsssrv_netgroup.c
parent6230ee6822dd61f3591c3c502047b338f09b3292 (diff)
downloadsssd-30812cdfb92923c8d062a5db989015c676a87f07.tar.gz
sssd-30812cdfb92923c8d062a5db989015c676a87f07.tar.xz
sssd-30812cdfb92923c8d062a5db989015c676a87f07.zip
NSS: Fix netgroup midpoint cache refresh
https://fedorahosted.org/sssd/ticket/1683 The result of the percent calculation was always 0 as it used plain ints. The patch switches to using explicit floats to avoid reintroducing the bug again even with brackets.
Diffstat (limited to 'src/responder/nss/nsssrv_netgroup.c')
-rw-r--r--src/responder/nss/nsssrv_netgroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/responder/nss/nsssrv_netgroup.c b/src/responder/nss/nsssrv_netgroup.c
index ae993fac6..4b10b1819 100644
--- a/src/responder/nss/nsssrv_netgroup.c
+++ b/src/responder/nss/nsssrv_netgroup.c
@@ -535,7 +535,7 @@ static errno_t lookup_netgr_step(struct setent_step_ctx *step_ctx)
netgr->found = true;
if (step_ctx->nctx->cache_refresh_percent) {
lifetime = dom->netgroup_timeout *
- (step_ctx->nctx->cache_refresh_percent / 100);
+ (step_ctx->nctx->cache_refresh_percent / 100.0);
} else {
lifetime = dom->netgroup_timeout;
}