From: Howard Chu Date: Fri, 23 Aug 2002 22:29:08 +0000 (+0000) Subject: Fix typo in previous commit. (Benign, code was #if'd out anyway.) X-Git-Tag: NO_SLAP_OP_BLOCKS~1194 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=77783bb4b71f9376783db85234fd558ae736bd21;p=openldap Fix typo in previous commit. (Benign, code was #if'd out anyway.) --- diff --git a/servers/slapd/back-ldbm/idl.c b/servers/slapd/back-ldbm/idl.c index 8bfc916463..1fc046d3e0 100644 --- a/servers/slapd/back-ldbm/idl.c +++ b/servers/slapd/back-ldbm/idl.c @@ -58,7 +58,7 @@ static void idl_check(ID_BLOCK *idl) #ifndef USE_INDIRECT_NIDS if( ID_BLOCK_INDIRECT(idl) ) { - for ( max = 0; !ID_BLOCK_BOID(idl, max); max++ ) ; + for ( max = 0; !ID_BLOCK_NOID(idl, max); max++ ) ; } else #endif {