mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 08:22:04 -04:00
default_fromtext_callback should print a newline
This commit is contained in:
parent
231ffa6c85
commit
861cef1397
1 changed files with 2 additions and 1 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: rdata.c,v 1.163 2002/03/08 01:38:56 bwelling Exp $ */
|
||||
/* $Id: rdata.c,v 1.164 2002/03/08 01:58:10 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
#include <ctype.h>
|
||||
|
|
@ -1937,6 +1937,7 @@ default_fromtext_callback(dns_rdatacallbacks_t *callbacks, const char *fmt,
|
|||
va_start(ap, fmt);
|
||||
vfprintf(stderr, fmt, ap);
|
||||
va_end(ap);
|
||||
fprintf(stderr, "\n");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue