Download raw body.
another yubikey diff
Mark Kettenis <mark.kettenis@xs4all.nl> wrote:
> > From: "Theo de Raadt" <deraadt@openbsd.org>
> > Date: Fri, 22 Aug 2025 08:31:19 -0600
> >
> > Why not invert this with a "donotconnect" variable, then your diff
> > shrinks significantly.
>
> Not really; the struct wkbddev_attach_args is typically allocated on
> the stack, without an explicit memset, so the new member must be set.
So change all those stack allocations to = { 0 }
And change one driver to set .noconnect = 1;
Making the default noconnect is going to explode someone's head later
on when they write a new kbd driver.
another yubikey diff