which conflicts with a dhcp configuration syntax token by the same name.
[ISC-Bugs #16898]
every time the option was overridden, which could create a lot of
unnecessary logging.
+- Fixed a compilation problems on platforms that define a value for FDDI,
+ which conflicts with a dhcp configuration syntax token by the same name.
+
Changes since 4.0.0b3
- The reverse dns name for PTR updates on IPv6 addresses has been fixed to
if (!strcasecmp (atom + 1, "ixed-address6"))
return FIXED_ADDR6;
if (!strcasecmp (atom + 1, "ddi"))
- return FDDI;
+ return TOKEN_FDDI;
if (!strcasecmp (atom + 1, "ormerr"))
return NS_FORMERR;
if (!strcasecmp (atom + 1, "unction"))
/*
* hardware-parameter :== HARDWARE hardware-type colon-separated-hex-list SEMI
- * hardware-type :== ETHERNET | TOKEN_RING | FDDI
+ * hardware-type :== ETHERNET | TOKEN_RING | TOKEN_FDDI
*/
void parse_hardware_param (cfile, hardware)
case TOKEN_RING:
hardware -> hbuf [0] = HTYPE_IEEE802;
break;
- case FDDI:
+ case TOKEN_FDDI:
hardware -> hbuf [0] = HTYPE_FDDI;
break;
default:
COMMUNICATIONS_INTERRUPTED = 376,
POTENTIAL_CONFLICT = 377,
RECOVER = 378,
- FDDI = 379,
+ TOKEN_FDDI = 379,
AUTHORITATIVE = 380,
TOKEN_NOT = 381,
AUTHENTICATION = 383,
case TOKEN_RING:
ll_type = HTYPE_IEEE802;
break;
- case FDDI:
+ case TOKEN_FDDI:
ll_type = HTYPE_FDDI;
break;
default:
case TOKEN_RING:
ll_type = HTYPE_IEEE802;
break;
- case FDDI:
+ case TOKEN_FDDI:
ll_type = HTYPE_FDDI;
break;
default: