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

2511. [cleanup] dns_rdata_tofmttext() add const to linebreak.

[RT #18885]
This commit is contained in:
Mark Andrews
2008-12-12 04:37:24 +00:00
parent a8a8e73121
commit a5746c4ec1
3 changed files with 8 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: rdata.c,v 1.199 2008/09/24 02:46:22 marka Exp $ */
/* $Id: rdata.c,v 1.200 2008/12/12 04:37:23 marka Exp $ */
/*! \file */
@@ -735,7 +735,7 @@ dns_rdata_totext(dns_rdata_t *rdata, dns_name_t *origin, isc_buffer_t *target)
isc_result_t
dns_rdata_tofmttext(dns_rdata_t *rdata, dns_name_t *origin,
unsigned int flags, unsigned int width,
char *linebreak, isc_buffer_t *target)
const char *linebreak, isc_buffer_t *target)
{
dns_rdata_textctx_t tctx;