Index | Thread | Search

From:
Theo Buehler <tb@theobuehler.org>
Subject:
Re: bgpd: logmsg.c stop using logit()
To:
tech@openbsd.org
Date:
Thu, 30 Apr 2026 16:33:42 +0200

Download raw body.

Thread
On Thu, Apr 30, 2026 at 04:23:57PM +0200, Claudio Jeker wrote:
> logmsg.c is using logit(), another function that I think should not be
> exposed. There is also parse.y using logit() but that one will need to
> wait a bit longer.
> 
> Moving away from logit() is simple since:
> logit(LOG_ERR, ...) is the same as log_warnx(...) and
> logit(LOG_INFO, ...) is the same as log_info(...).

ok tb