2511. [cleanup] dns_rdata_tofmttext() add const to linebreak.
[RT #18885]
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -95,6 +95,9 @@
|
||||
a nameserver of the excluded address family.
|
||||
[RT #18848]
|
||||
|
||||
2511. [cleanup] dns_rdata_tofmttext() add const to linebreak.
|
||||
[RT #18885]
|
||||
|
||||
2505. [port] Treat amd64 similarly to x86_64 when determining
|
||||
atomic operation support. [RT #19031]
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: rdata.h,v 1.70.120.2 2009/01/18 23:47:41 tbox Exp $ */
|
||||
/* $Id: rdata.h,v 1.70.120.3 2009/02/16 00:29:27 marka Exp $ */
|
||||
|
||||
#ifndef DNS_RDATA_H
|
||||
#define DNS_RDATA_H 1
|
||||
@@ -385,7 +385,8 @@ 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);
|
||||
unsigned int width, const char *linebreak,
|
||||
isc_buffer_t *target);
|
||||
/*%<
|
||||
* Like dns_rdata_totext, but do formatted output suitable for
|
||||
* database dumps. This is intended for use by dns_db_dump();
|
||||
|
||||
@@ -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.199.50.1 2009/02/16 00:29:27 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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user