[master] change "fast" to "map"

3475.	[cleanup]	Changed name of 'map' zone file format (previously
			'fast'). [RT #32458]
This commit is contained in:
Evan Hunt
2013-01-24 14:20:48 -08:00
parent dd59fe01c9
commit c9611b4573
27 changed files with 103 additions and 100 deletions

View File

@@ -3404,8 +3404,8 @@ main(int argc, char *argv[]) {
if (inputformatstr != NULL) {
if (strcasecmp(inputformatstr, "text") == 0)
inputformat = dns_masterformat_text;
else if (strcasecmp(inputformatstr, "fast") == 0)
inputformat = dns_masterformat_fast;
else if (strcasecmp(inputformatstr, "map") == 0)
inputformat = dns_masterformat_map;
else if (strcasecmp(inputformatstr, "raw") == 0)
inputformat = dns_masterformat_raw;
else if (strncasecmp(inputformatstr, "raw=", 4) == 0) {
@@ -3423,8 +3423,8 @@ main(int argc, char *argv[]) {
} else if (strcasecmp(outputformatstr, "full") == 0) {
outputformat = dns_masterformat_text;
masterstyle = &dns_master_style_full;
} else if (strcasecmp(outputformatstr, "fast") == 0) {
outputformat = dns_masterformat_fast;
} else if (strcasecmp(outputformatstr, "map") == 0) {
outputformat = dns_masterformat_map;
} else if (strcasecmp(outputformatstr, "raw") == 0) {
outputformat = dns_masterformat_raw;
} else if (strncasecmp(outputformatstr, "raw=", 4) == 0) {