mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 07:32:09 -04:00
failed to increment sp on last change.
This commit is contained in:
parent
251227789b
commit
c2b217ea11
1 changed files with 2 additions and 1 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: rdata.c,v 1.190 2005/07/20 01:46:49 marka Exp $ */
|
||||
/* $Id: rdata.c,v 1.191 2005/07/22 05:31:01 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -996,6 +996,7 @@ txt_totext(isc_region_t *source, isc_buffer_t *target) {
|
|||
*tp++ = 0x30 + ((*sp / 100) % 10);
|
||||
*tp++ = 0x30 + ((*sp / 10) % 10);
|
||||
*tp++ = 0x30 + (*sp % 10);
|
||||
sp++;
|
||||
tl -= 4;
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue