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

Put quotes around ordering name on output.

This commit is contained in:
James Brister
2000-02-09 16:48:04 +00:00
parent 51c7627c91
commit 06d958edb3

View File

@@ -291,7 +291,7 @@ dns_c_rrso_print(FILE *fp, int indent, dns_c_rrso_t *order)
dns_c_datatype_tostream(fp, order->otype);
}
fprintf(fp, " name %s", order->name);
fprintf(fp, " name \"%s\"", order->name);
fprintf(fp, " order %s",
dns_c_ordering2string(order->ordering, ISC_TRUE));