Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In many cases, DER defines something like ATTRIBUTE foo 1 type option=1 this seems redundant. We make provisions for allowing just 'option', which could then take the option number from the attribute number. However, the function dict_read_process_attribute() initializes the attribute number _after_ processing the flags / type field. Once that code has been tweaked to parse the attribute number first, this new DER code will work. At that point, the DER dictionaries can be updated with the following Perl script: perl -p -i -e 'next if !/^ATTR/;s/option=\d+/option/' share/dictionary/der/dictionary*
- Loading branch information