2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +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: base64.c,v 1.23 2001/03/22 00:07:04 bwelling Exp $ */
/* $Id: base64.c,v 1.24 2001/11/27 00:56:08 gson Exp $ */
#include <config.h>
@@ -180,7 +180,7 @@ isc_base64_tobuffer(isc_lex_t *lexer, isc_buffer_t *target, int length) {
if (token.type != isc_tokentype_string)
break;
tr = &token.value.as_textregion;
for (i = 0 ;i < tr->length; i++)
for (i = 0;i < tr->length; i++)
RETERR(base64_decode_char(&ctx, tr->base[i]));
}
if (ctx.length < 0 && !ctx.seen_end)