2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Do not put a space before ';' when terminating a statement or in a 'for' statement.

This commit is contained in:
Andreas Gustafsson
2001-11-27 00:56:32 +00:00
parent 4d1d37a19d
commit f1b6872550
53 changed files with 205 additions and 205 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: rbt.c,v 1.118 2001/11/13 06:19:55 marka Exp $ */
/* $Id: rbt.c,v 1.119 2001/11/27 00:55:56 gson Exp $ */
/* Principal Authors: DCL */
@@ -186,7 +186,7 @@ name_hash(dns_name_t *name) {
nlabels = dns_name_countlabels(name);
hash = 0;
for ( ; nlabels > 0; nlabels--) {
for (; nlabels > 0; nlabels--) {
dns_name_getlabelsequence(name, nlabels - 1, 1, &tname);
hash += dns_name_hash(&tname, ISC_FALSE);
}