Skip to content

Commit

Permalink
miniupnpd: Suppress logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpt52 committed Aug 1, 2024
1 parent 47e4f2b commit ea9d6f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions miniupnpd/netfilter_nft/nftnlrdr_misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ parse_rule_payload(struct nftnl_expr *e, rule_t *r)
len = nftnl_expr_get_u32(e, NFTNL_EXPR_PAYLOAD_LEN);
regptr = get_reg_type_ptr(r, dreg);
if (regptr == NULL) {
syslog(LOG_ERR, "%s: unsupported dreg %u", "parse_rule_payload", dreg);
syslog(LOG_INFO, "%s: unsupported dreg %u", "parse_rule_payload", dreg);
return;
}

Expand Down Expand Up @@ -620,7 +620,7 @@ table_cb(const struct nlmsghdr *nlh, void *data)
break;

default:
syslog(LOG_WARNING, "unknown rule type %d", r->type);
syslog(LOG_INFO, "unknown rule type %d", r->type);
break;
}
} else {
Expand Down

0 comments on commit ea9d6f6

Please sign in to comment.