summaryrefslogtreecommitdiff
path: root/common/conflex.c
diff options
context:
space:
mode:
authorShawn Routhier <sar@isc.org>2014-04-25 10:50:24 -0700
committerShawn Routhier <sar@isc.org>2014-04-25 10:50:24 -0700
commit38c4774a4324a16f0a9f39950700699949acb362 (patch)
treebb2da2f818d6eb7d362daaca512990bf3aa1a202 /common/conflex.c
parent57187138e0098a281b689de6170325d4c9fe4c0b (diff)
downloadisc-dhcp-38c4774a4324a16f0a9f39950700699949acb362.tar.gz
[master] Several small patches
Tidy up several small tickets Correct parsing of DUID from config file, previously the LL type was put in the wrong place in the DUID string. [ISC-Bugs #20962] Add code to parse "do-forward-updates" as well as "do-forward-update" [ISC-Bugs #31328] Remove log_priority as it isn't currently used. [ISC-Bugs #33397] Increase the size of the buffer used for reading interface information. [ISC-Bugs #34858]
Diffstat (limited to 'common/conflex.c')
-rw-r--r--common/conflex.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/conflex.c b/common/conflex.c
index ff46b141..2e708dab 100644
--- a/common/conflex.c
+++ b/common/conflex.c
@@ -888,6 +888,9 @@ intern(char *atom, enum dhcp_token dfv) {
if (!strcasecmp(atom + 7, "list"))
return DOMAIN_LIST;
}
+ if (!strcasecmp (atom + 1, "o-forward-updates"))
+ return DO_FORWARD_UPDATE;
+ /* do-forward-update is included for historical reasons */
if (!strcasecmp (atom + 1, "o-forward-update"))
return DO_FORWARD_UPDATE;
if (!strcasecmp (atom + 1, "ebug"))