summaryrefslogtreecommitdiffstats
path: root/src/responder/common
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/common
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/common')
-rw-r--r--src/responder/common/responder_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/responder/common/responder_cmd.c b/src/responder/common/responder_cmd.c
index a9c4e36ee..cb57cba1a 100644
--- a/src/responder/common/responder_cmd.c
+++ b/src/responder/common/responder_cmd.c
@@ -257,7 +257,7 @@ sss_cmd_check_cache(struct ldb_message *msg,
if(cache_refresh_percent) {
midpoint_refresh = lastUpdate +
- (cache_expire - lastUpdate)*cache_refresh_percent/100;
+ (cache_expire - lastUpdate)*cache_refresh_percent/100.0;
if (midpoint_refresh - lastUpdate < 10) {
/* If the percentage results in an expiration
* less than ten seconds after the lastUpdate time,