mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
permit hexadecimal and octal dscp values
This commit is contained in:
parent
a13fdd31b7
commit
f9ed68cc5d
1 changed files with 1 additions and 1 deletions
|
|
@ -1864,7 +1864,7 @@ isc_result_t
|
|||
cfg_parse_dscp(cfg_parser_t *pctx, isc_dscp_t *dscp) {
|
||||
isc_result_t result;
|
||||
|
||||
CHECK(cfg_gettoken(pctx, ISC_LEXOPT_NUMBER));
|
||||
CHECK(cfg_gettoken(pctx, ISC_LEXOPT_NUMBER | ISC_LEXOPT_CNUMBER));
|
||||
|
||||
if (pctx->token.type != isc_tokentype_number) {
|
||||
cfg_parser_error(pctx, CFG_LOG_NEAR,
|
||||
|
|
|
|||
Loading…
Reference in a new issue