From ad493ef9ddb5a3e78e9d99f57abe75552f36a8f4 Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Fri, 6 Jul 2001 20:15:08 +0000 Subject: [PATCH] spacing --- lib/dns/rdata.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dns/rdata.c b/lib/dns/rdata.c index 277f045ad7..5729dbbb35 100644 --- a/lib/dns/rdata.c +++ b/lib/dns/rdata.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: rdata.c,v 1.143 2001/03/06 22:10:33 marka Exp $ */ +/* $Id: rdata.c,v 1.144 2001/07/06 20:15:08 gson Exp $ */ #include #include @@ -1379,7 +1379,7 @@ txt_fromtext(isc_textregion_t *source, isc_buffer_t *target) { if (nrem > 255) nrem = 255; while (n-- != 0) { - c = (*s++)&0xff; + c = (*s++) & 0xff; if (escape && (d = decvalue((char)c)) != -1) { c = d; if (n == 0)