28 January 2022: Wouter
- Annotate that we ignore the return value of if_indextoname.
- Fix to use correct type for label count in rpz routine.
+ - Fix empty clause warning in config_file nsid parse.
26 January 2022: George
- Merge PR #408 from fobser: Prevent a few more yacc clashes.
if ((nsid = (uint8_t *)strdup(str + 6)))
*nsid_len = strlen(str + 6);
- } else if (strlen(str) % 2)
+ } else if (strlen(str) % 2) {
; /* hex string has even number of characters */
+ }
else if (*str && (nsid = calloc(1, strlen(str) / 2))) {
const char *ch;