[PATCH] [src] - etc/root/root.mail - correct time zone

2020-04-05 Thread Raf Czlonka
Hi all, Time zone change. Regards, Raf Index: etc/root/root.mail === RCS file: /cvs/src/etc/root/root.mail,v retrieving revision 1.137 diff -u -p -r1.137 root.mail --- etc/root/root.mail 5 Apr 2020 16:15:39 - 1.137 +++ e

Re: EV_SET(2) shadows variable

2020-04-05 Thread Philip Guenther
On Sat, 4 Apr 2020, Theo de Raadt wrote: > Philip Guenther wrote: > > > On Fri, 3 Apr 2020, Martin Pieuchot wrote: > > > Thanks, here it is, ok? > > > > ok guenther@ > > Should we do the same to all other macros, just in case? Checking /usr/include/{,sys/}*.h, the diff below fixes the only one

Re: split futex into three

2020-04-05 Thread Philip Guenther
On Sun, 5 Apr 2020, Stuart Henderson wrote: > On 2020/04/05 10:28, Martin Pieuchot wrote: > > Another way to proceed would be to do a port grep for futex and see what > > the ecosystem is using. > > Sorry it's not filtered, but : > > https://junkpile.org/grep.futex.gz Sure looks like the only oc

Re: sparc64 clang fixes

2020-04-05 Thread Mark Kettenis
> Date: Sat, 4 Apr 2020 23:46:05 +0200 (CEST) > From: Mark Kettenis > > So regress/lib/libm/msun/run-conj_test fails because clang emits > fmovqne instructions. Those instructions aren't actually implemented > and since we don't emulate them in our kernel the test gets killed > with SIGILL. > >

OpenBSD perl 5.30.2 - Call for Testing

2020-04-05 Thread Andrew Hewus Fresh
There's a minor update for perl 5.30.2 out, mostly just some bugfixes, but also documentation updates because the main repository and bug tracker for perl has moved to GitHub. The full perldeltas are here the main one for for 5.30.0, and 5.30.1 that we have in-tree now and the smaller bugfixes in

Re: ospf6d: update to connected routes

2020-04-05 Thread Remi Locherer
On Wed, Apr 01, 2020 at 08:50:45PM +0200, Denis Fondras wrote: > Handle connected routes as ospfd(8) does. > > (diff to ospf6d and ospf6ctl) OK remi@ > > Index: ospf6ctl/ospf6ctl.c > === > RCS file: /cvs/src/usr.sbin/ospf6ctl/ospf6

simplepanel(4) man page stub

2020-04-05 Thread Marcus MERIGHI
Hello, reading plus.html I noticed that the link to simplepanel(4) was a dead end. below is my attempt at a stub man page with what I could gather from plus.html and the commit log. Marcus --- /dev/null Sun Apr 5 15:13:10 2020 +++ src/share/man/man4/simplepanel.4Sun Apr 5 15:08:52 2020

Fix error path of VOP_IOCTL() in sr_hotspare()

2020-04-05 Thread Visa Hankala
In sr_hotspare(), the error path of VOP_IOCTL() appears to do a redundant VOP_CLOSE() and vput(). The diff below fixes that. The fail branch will close the vnode because `open' is true. OK? Index: dev/softraid.c === RCS file: src/sys

Re: split futex into three

2020-04-05 Thread Stuart Henderson
On 2020/04/05 10:28, Martin Pieuchot wrote: > Another way to proceed would be to do a port grep for futex and see what > the ecosystem is using. Sorry it's not filtered, but : https://junkpile.org/grep.futex.gz

Re: [PATCH] gostr341001: support unwrapped private keys support

2020-04-05 Thread Kinichiro Inoguchi
> There is no English specification for GOST PKCS8 files yet, > unfortunately. You can find similar pieces of code in OpenSSL's GOST > engine (https://github.com/gost-engine/engine/blob/master/gost_ameth.c#L347) > and in GnuTLS > (https://gitlab.com/gnutls/gnutls/-/blob/master/lib/x509/privkey_pkc

Re: [patch] Remove old sshd_config(5) keyword from authpf(8) manual

2020-04-05 Thread Jason McIntyre
On Sun, Apr 05, 2020 at 11:05:48AM +0200, Martin Vahlensieck wrote: > Hi! > > From my research in the cvs history of sshd_config.5 the `Protocol' > keyword was removed in 2016, so remove it here as well. > > Best, > > Martin > fixed, thanks. jmc > Index: authpf.8 > ===

Re: [UPDATE] xcb-proto and libxcb 1.14

2020-04-05 Thread Matthieu Herrb
On Sun, Mar 22, 2020 at 08:13:11PM +0100, Matthieu Herrb wrote: > Hi, > > the patch below updates XCB (xcb-proto and libxcb) to version 1.14.0. > > I've been running this on amd64 for a while. Comments ? ok ? > > Note that it goes together with an update to the x11/py-xcbgen port > that I'm send

[patch] Remove old sshd_config(5) keyword from authpf(8) manual

2020-04-05 Thread Martin Vahlensieck
Hi! >From my research in the cvs history of sshd_config.5 the `Protocol' keyword was removed in 2016, so remove it here as well. Best, Martin Index: authpf.8 === RCS file: /cvs/src/usr.sbin/authpf/authpf.8,v retrieving revision 1.5

Re: split futex into three

2020-04-05 Thread Martin Pieuchot
On 04/04/20(Sat) 22:30, Philip Guenther wrote: > [...] > glibc has internal inline functions futex_wait() and futex_wake() and > there has been at least discussion about exporting some version of them. > If our signatures matched the last-best-proposal over there (which was > dropped, mind you