WTERMSIG behavior difference

2022-01-06 Thread Greg Steuck
I started by debugging a weird test failure in ghc. I narrowed it down to a simple C program which behaves differently between OpenBSD and FreeBSD. I stared at the headers of both systems for a bit and still don't see why on OpenBSD the program prints: uname -a ; cc ./a.c && ./a.out OpenBSD home.n

Re: fw_update(8) Avoid downloading SHA256.sig unless we need it

2022-01-06 Thread Andrew Hewus Fresh
On Thu, Jan 06, 2022 at 06:13:33PM -0800, Andrew Hewus Fresh wrote: > deraadt@ noticed that if you install a list of local files fw_update > still tries to download the SHA256.sig and will fail if it can't. That > doesn't make sense, so instead only download it if we're going to use > it and it do

fw_update(8) Avoid downloading SHA256.sig unless we need it

2022-01-06 Thread Andrew Hewus Fresh
deraadt@ noticed that if you install a list of local files fw_update still tries to download the SHA256.sig and will fail if it can't. That doesn't make sense, so instead only download it if we're going to use it and it doesn't exist. It does continue to attempt to update the SHA256.sig if we're

Duplicate entries in arm64 GENERIC

2022-01-06 Thread Crystal Kolipe
Since revision 1.2, these SCSI entries have been duplicated in the arm64 GENERIC config file. The attached patch removes the ones near the top of the config and leaves the ones lower down, for consistency with the layout of other architectures. --- GENERIC.origThu Jan 6 14:39:45 2022 +

Re: rpki-client fix for a FIXME

2022-01-06 Thread Theo Buehler
On Thu, Jan 06, 2022 at 03:30:33PM +0100, Claudio Jeker wrote: > On Thu, Jan 06, 2022 at 01:48:01PM +0100, Theo Buehler wrote: > > On Thu, Jan 06, 2022 at 01:21:03PM +0100, Claudio Jeker wrote: > > > Ran into this the other day and could not help myself to adjust the code. > > > If the mft is stale

Re: rpki-client fix for a FIXME

2022-01-06 Thread Claudio Jeker
On Thu, Jan 06, 2022 at 01:48:01PM +0100, Theo Buehler wrote: > On Thu, Jan 06, 2022 at 01:21:03PM +0100, Claudio Jeker wrote: > > Ran into this the other day and could not help myself to adjust the code. > > If the mft is stale just bump the stale counter and be done. If not stale > > queue all fi

Re: rpki-client fix for a FIXME

2022-01-06 Thread Theo Buehler
On Thu, Jan 06, 2022 at 01:21:03PM +0100, Claudio Jeker wrote: > Ran into this the other day and could not help myself to adjust the code. > If the mft is stale just bump the stale counter and be done. If not stale > queue all files from the mft for the next round. > > In mft_parse I switched to a

rpki-client fix for a FIXME

2022-01-06 Thread Claudio Jeker
Ran into this the other day and could not help myself to adjust the code. If the mft is stale just bump the stale counter and be done. If not stale queue all files from the mft for the next round. In mft_parse I switched to a switch statement which is more obvious in my opinion. -- :wq Claudio I