From: Ondřej Surý Date: Wed, 6 Jun 2018 12:37:22 +0000 (+0200) Subject: fix whitespaces X-Git-Tag: v9.13.1~8^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=013a49474cc25abd722ee91ab11c2033ee2b0efc;p=thirdparty%2Fbind9.git fix whitespaces --- diff --git a/lib/dns/rbtdb.c b/lib/dns/rbtdb.c index ab586dab7b0..e332802fc3e 100644 --- a/lib/dns/rbtdb.c +++ b/lib/dns/rbtdb.c @@ -5419,8 +5419,8 @@ expirenode(dns_db_t *db, dns_dbnode_t *node, isc_stdtime_t now) { * Force expire with 25% probability. * XXXDCL Could stand to have a better policy, like LRU. */ - force_expire = ISC_TF(rbtnode->down == NULL && - (isc_random32() % 4) == 0); + force_expire = ISC_TF(rbtnode->down == NULL && + (isc_random32() % 4) == 0); /* * Note that 'log' can be true IFF overmem is also true. diff --git a/lib/isc/random.c b/lib/isc/random.c index 9e78878170a..13bca5d9941 100644 --- a/lib/isc/random.c +++ b/lib/isc/random.c @@ -104,13 +104,13 @@ isc_random_buf(void *buf, size_t buflen) { for (i = 0; i + sizeof(r) <= buflen; i += sizeof(r)) { r = next(); memmove((uint8_t *)buf + i, &r, sizeof(r)); /* Buffers cannot - * really overlap - * here */ + * really overlap + * here */ } r = next(); memmove((uint8_t *)buf + i, &r, buflen % sizeof(r)); /* Buffer cannot - * really overlap - * here */ + * really overlap + * here */ return; }